diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-01-03 17:07:34 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-01-03 17:07:34 +0000 |
commit | ad01b31b942517d1b3d4f190fd131f845c27ce34 (patch) | |
tree | 66ac743f5ce1ea42c470c6bd16aed213a3c9abb6 /clang/lib/Lex/PPDirectives.cpp | |
parent | 2f197adeeb9765fb23a2da7b38da664c4e82276a (diff) | |
download | bcm5719-llvm-ad01b31b942517d1b3d4f190fd131f845c27ce34.tar.gz bcm5719-llvm-ad01b31b942517d1b3d4f190fd131f845c27ce34.zip |
Add a "Modules" language option, which subsumes the previous
"AutoModuleImport" preprocessor option and is tied to -fmodules.
llvm-svn: 147448
Diffstat (limited to 'clang/lib/Lex/PPDirectives.cpp')
-rw-r--r-- | clang/lib/Lex/PPDirectives.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Lex/PPDirectives.cpp b/clang/lib/Lex/PPDirectives.cpp index 4d700aef03b..2dfae872e2f 100644 --- a/clang/lib/Lex/PPDirectives.cpp +++ b/clang/lib/Lex/PPDirectives.cpp @@ -1294,7 +1294,7 @@ void Preprocessor::HandleIncludeDirective(SourceLocation HashLoc, const FileEntry *File = LookupFile( Filename, isAngled, LookupFrom, CurDir, Callbacks ? &SearchPath : NULL, Callbacks ? &RelativePath : NULL, - AutoModuleImport? &SuggestedModule : 0); + getLangOptions().Modules? &SuggestedModule : 0); if (Callbacks) { if (!File) { @@ -1308,7 +1308,7 @@ void Preprocessor::HandleIncludeDirective(SourceLocation HashLoc, // Try the lookup again, skipping the cache. File = LookupFile(Filename, isAngled, LookupFrom, CurDir, 0, 0, - AutoModuleImport ? &SuggestedModule : 0, + getLangOptions().Modules? &SuggestedModule : 0, /*SkipCache*/true); } } |