This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d2eb6ef69c [analyzer] Add new delete with non-virtual destructor check new 6254bf4ade Add Cross Translation Unit support library
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/Basic/AllDiagnostics.h | 1 + include/clang/Basic/CMakeLists.txt | 1 + include/clang/Basic/Diagnostic.td | 1 + ...sticCategories.td => DiagnosticCrossTUKinds.td} | 13 +- include/clang/Basic/DiagnosticIDs.h | 4 +- include/clang/CrossTU/CrossTUDiagnostic.h | 29 +++ include/clang/CrossTU/CrossTranslationUnit.h | 159 ++++++++++++ lib/AST/ASTImporter.cpp | 15 ++ lib/Basic/DiagnosticIDs.cpp | 4 +- lib/CMakeLists.txt | 1 + lib/CrossTU/CMakeLists.txt | 13 + lib/CrossTU/CrossTranslationUnit.cpp | 271 +++++++++++++++++++++ test/Analysis/func-mapping-test.cpp | 7 + test/CMakeLists.txt | 1 + test/lit.cfg.py | 1 + tools/CMakeLists.txt | 1 + tools/clang-func-mapping/CMakeLists.txt | 22 ++ tools/clang-func-mapping/ClangFnMapGen.cpp | 124 ++++++++++ tools/diagtool/DiagnosticNames.cpp | 1 + unittests/CMakeLists.txt | 1 + unittests/CrossTU/CMakeLists.txt | 16 ++ unittests/CrossTU/CrossTranslationUnitTest.cpp | 138 +++++++++++ 22 files changed, 819 insertions(+), 5 deletions(-) copy include/clang/Basic/{DiagnosticCategories.td => DiagnosticCrossTUKinds.td} (54%) create mode 100644 include/clang/CrossTU/CrossTUDiagnostic.h create mode 100644 include/clang/CrossTU/CrossTranslationUnit.h create mode 100644 lib/CrossTU/CMakeLists.txt create mode 100644 lib/CrossTU/CrossTranslationUnit.cpp create mode 100644 test/Analysis/func-mapping-test.cpp create mode 100644 tools/clang-func-mapping/CMakeLists.txt create mode 100644 tools/clang-func-mapping/ClangFnMapGen.cpp create mode 100644 unittests/CrossTU/CMakeLists.txt create mode 100644 unittests/CrossTU/CrossTranslationUnitTest.cpp