From 4b7cac5d04dba8a6cda46ba05d6a79218557aa94 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Wed, 30 Nov 2011 19:39:08 +0000 Subject: [PATCH] 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 --- lib/Lex/PPDirectives.cpp | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.50.1