]> granicus.if.org Git - clang/commit
Initial implementation of -modules-earch-all option, for searching for symbols in...
authorJohn Thompson <John.Thompson.JTSoftware@gmail.com>
Wed, 23 Apr 2014 12:57:01 +0000 (12:57 +0000)
committerJohn Thompson <John.Thompson.JTSoftware@gmail.com>
Wed, 23 Apr 2014 12:57:01 +0000 (12:57 +0000)
commit9be87f878588e7ed414dbfa29805883cc9cbb885
tree1ce960127f08105e2ab290221b1106441d34d757
parent0f0e18f77f5ceaee634653c3a80f79298d7b7407
Initial implementation of -modules-earch-all option, for searching for symbols in non-imported modules.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@206977 91177308-0d34-0410-b5e6-96231b3b80d8
34 files changed:
docs/Modules.rst
include/clang/Basic/LangOptions.def
include/clang/Driver/Options.td
include/clang/Frontend/ASTUnit.h
include/clang/Frontend/CompilerInstance.h
include/clang/Lex/HeaderSearch.h
include/clang/Lex/ModuleLoader.h
include/clang/Sema/Sema.h
include/clang/Serialization/ASTReader.h
lib/Frontend/CompilerInstance.cpp
lib/Frontend/CompilerInvocation.cpp
lib/Sema/SemaCXXScopeSpec.cpp
lib/Sema/SemaDecl.cpp
lib/Sema/SemaDeclCXX.cpp
lib/Sema/SemaDeclObjC.cpp
lib/Sema/SemaExpr.cpp
lib/Sema/SemaExprMember.cpp
lib/Sema/SemaExprObjC.cpp
lib/Sema/SemaInit.cpp
lib/Sema/SemaLookup.cpp
lib/Sema/SemaOpenMP.cpp
lib/Sema/SemaTemplate.cpp
lib/Sema/SemaTemplateVariadic.cpp
test/Modules/Inputs/undefined-type-fixit/module.map [new file with mode: 0644]
test/Modules/Inputs/undefined-type-fixit/public1.h [new file with mode: 0644]
test/Modules/Inputs/undefined-type-fixit/public2.h [new file with mode: 0644]
test/Modules/Inputs/undefined-type-fixit/public2sub.h [new file with mode: 0644]
test/Modules/undefined-type-fixit1.cpp [new file with mode: 0644]
unittests/Basic/SourceManagerTest.cpp
unittests/Lex/CMakeLists.txt
unittests/Lex/LexerTest.cpp
unittests/Lex/Makefile
unittests/Lex/PPCallbacksTest.cpp
unittests/Lex/PPConditionalDirectiveRecordTest.cpp