diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-11-30 19:39:08 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-11-30 19:39:08 +0000 |
commit | c3312fab717fba32347df47b0a2dc5d1d6dd984e (patch) | |
tree | 90f956e6ec6babb3119f78e09db34b81850ce53e /clang/lib/Lex/PPDirectives.cpp | |
parent | 7d8517b1d4e1fcedbcc2c7c71e7282ae677d1f28 (diff) | |
download | bcm5719-llvm-c3312fab717fba32347df47b0a2dc5d1d6dd984e.tar.gz bcm5719-llvm-c3312fab717fba32347df47b0a2dc5d1d6dd984e.zip |
Note that we'll need to handle __include_macros specially in the module loader
llvm-svn: 145514
Diffstat (limited to 'clang/lib/Lex/PPDirectives.cpp')
-rw-r--r-- | clang/lib/Lex/PPDirectives.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Lex/PPDirectives.cpp b/clang/lib/Lex/PPDirectives.cpp index 9e5757f03d0..e86680ef646 100644 --- a/clang/lib/Lex/PPDirectives.cpp +++ b/clang/lib/Lex/PPDirectives.cpp @@ -1360,6 +1360,7 @@ void Preprocessor::HandleIncludeDirective(SourceLocation HashLoc, "__import_module__ " + PathString.str().str() + ";"); // Load the module. + // FIXME: Deal with __include_macros here. TheModuleLoader.loadModule(IncludeTok.getLocation(), Path); return; } |