[cfe-commits] r145514 - /cfe/trunk/lib/Lex/PPDirectives.cpp
Douglas Gregor
dgregor at apple.com
Wed Nov 30 11:39:08 PST 2011
Author: dgregor
Date: Wed Nov 30 13:39:08 2011
New Revision: 145514
URL: http://llvm.org/viewvc/llvm-project?rev=145514&view=rev
Log:
Note that we'll need to handle __include_macros specially in the module loader
Modified:
cfe/trunk/lib/Lex/PPDirectives.cpp
Modified: cfe/trunk/lib/Lex/PPDirectives.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Lex/PPDirectives.cpp?rev=145514&r1=145513&r2=145514&view=diff
==============================================================================
--- cfe/trunk/lib/Lex/PPDirectives.cpp (original)
+++ cfe/trunk/lib/Lex/PPDirectives.cpp Wed Nov 30 13:39:08 2011
@@ -1360,6 +1360,7 @@
"__import_module__ " + PathString.str().str() + ";");
// Load the module.
+ // FIXME: Deal with __include_macros here.
TheModuleLoader.loadModule(IncludeTok.getLocation(), Path);
return;
}
More information about the cfe-commits
mailing list