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
diff --git a/lib/Lex/PPDirectives.cpp b/lib/Lex/PPDirectives.cpp
index 9e5757f..e86680e 100644
--- a/lib/Lex/PPDirectives.cpp
+++ b/lib/Lex/PPDirectives.cpp
@@ -1360,6 +1360,7 @@
"__import_module__ " + PathString.str().str() + ";");
// Load the module.
+ // FIXME: Deal with __include_macros here.
TheModuleLoader.loadModule(IncludeTok.getLocation(), Path);
return;
}