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 | 4b7cac5d04dba8a6cda46ba05d6a79218557aa94 (patch) | |
tree | 53a195ec29ad6a81981a5133bcaeebf34fe6dacb | |
parent | c85900f4d6aec17ef29140bfc97977463ac75cb2 (diff) |
Note that we'll need to handle __include_macros specially in the module loader
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145514 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Lex/PPDirectives.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Lex/PPDirectives.cpp b/lib/Lex/PPDirectives.cpp index 9e5757f03d..e86680ef64 100644 --- a/lib/Lex/PPDirectives.cpp +++ b/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; } |