diff options
Diffstat (limited to 'Driver/clang.cpp')
-rw-r--r-- | Driver/clang.cpp | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/Driver/clang.cpp b/Driver/clang.cpp index 4c8a3525c8..098450d72d 100644 --- a/Driver/clang.cpp +++ b/Driver/clang.cpp @@ -598,14 +598,17 @@ static unsigned InitializePreprocessor(Preprocessor &PP, return 0; } } - + // Add macros from the command line. - // FIXME: Should traverse the #define/#undef lists in parallel. - for (unsigned i = 0, e = D_macros.size(); i != e; ++i) - DefineBuiltinMacro(PredefineBuffer, D_macros[i].c_str()); - for (unsigned i = 0, e = U_macros.size(); i != e; ++i) - DefineBuiltinMacro(PredefineBuffer, U_macros[i].c_str(), "#undef "); - + unsigned d = 0, D = D_macros.size(); + unsigned u = 0, U = U_macros.size(); + while (d < D || u < U) { + if (u == U || (d < D && D_macros.getPosition(d) < U_macros.getPosition(u))) + DefineBuiltinMacro(PredefineBuffer, D_macros[d++].c_str()); + else + DefineBuiltinMacro(PredefineBuffer, U_macros[u++].c_str(), "#undef "); + } + // FIXME: Read any files specified by -imacros. // Add implicit #includes from -include. |