Note that we'll need to handle __include_macros specially in the module loader

llvm-svn: 145514
diff --git a/clang/lib/Lex/PPDirectives.cpp b/clang/lib/Lex/PPDirectives.cpp
index 9e5757f..e86680e 100644
--- a/clang/lib/Lex/PPDirectives.cpp
+++ b/clang/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;
   }