This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 44e7dd4bbb [OpenCL] Map default address space to alloca address space new 3975e67148 [clang-import-test] Lookup inside contexts
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/AST/ExternalASTMerger.h | 51 ++++++ lib/AST/CMakeLists.txt | 1 + lib/AST/ExternalASTMerger.cpp | 183 +++++++++++++++++++++ test/Import/forward-declared-struct/Inputs/S1.c | 1 + test/Import/forward-declared-struct/Inputs/S2.c | 3 + test/Import/forward-declared-struct/test.c | 5 + test/Import/member-in-struct/Inputs/S.c | 3 + test/Import/member-in-struct/test.c | 5 + .../multiple-forward-declarations/Inputs/S1.c | 1 + .../multiple-forward-declarations/Inputs/S2.c | 1 + test/Import/multiple-forward-declarations/test.c | 4 + test/Import/overloaded-function/Inputs/F1.c | 1 + test/Import/overloaded-function/Inputs/F2.c | 4 + test/Import/overloaded-function/test.c | 7 + test/Import/struct-in-namespace/Inputs/N1.cpp | 11 ++ test/Import/struct-in-namespace/Inputs/N2.cpp | 5 + test/Import/struct-in-namespace/Inputs/N3.cpp | 5 + test/Import/struct-in-namespace/test.cpp | 7 + test/Import/template-specialization/Inputs/T.cpp | 14 ++ test/Import/template-specialization/test.cpp | 7 + tools/clang-import-test/clang-import-test.cpp | 64 ++----- 21 files changed, 331 insertions(+), 52 deletions(-) create mode 100644 include/clang/AST/ExternalASTMerger.h create mode 100644 lib/AST/ExternalASTMerger.cpp create mode 100644 test/Import/forward-declared-struct/Inputs/S1.c create mode 100644 test/Import/forward-declared-struct/Inputs/S2.c create mode 100644 test/Import/forward-declared-struct/test.c create mode 100644 test/Import/member-in-struct/Inputs/S.c create mode 100644 test/Import/member-in-struct/test.c create mode 100644 test/Import/multiple-forward-declarations/Inputs/S1.c create mode 100644 test/Import/multiple-forward-declarations/Inputs/S2.c create mode 100644 test/Import/multiple-forward-declarations/test.c create mode 100644 test/Import/overloaded-function/Inputs/F1.c create mode 100644 test/Import/overloaded-function/Inputs/F2.c create mode 100644 test/Import/overloaded-function/test.c create mode 100644 test/Import/struct-in-namespace/Inputs/N1.cpp create mode 100644 test/Import/struct-in-namespace/Inputs/N2.cpp create mode 100644 test/Import/struct-in-namespace/Inputs/N3.cpp create mode 100644 test/Import/struct-in-namespace/test.cpp create mode 100644 test/Import/template-specialization/Inputs/T.cpp create mode 100644 test/Import/template-specialization/test.cpp