This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from a057056821 [WebAssembly] Implement Address Sanitizer for Emscripten new 24d531c5bb [clang-scan-deps] Introduce the DependencyScanning library w [...] new 48a13dc0a6 Revert r363191 "[MS] Pretend constexpr variable template spe [...]
The 2 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: .../DependencyScanning/DependencyScanningWorker.h | 58 ++++++++ include/clang/Tooling/Tooling.h | 5 + lib/AST/ASTContext.cpp | 23 +--- lib/Tooling/CMakeLists.txt | 1 + lib/Tooling/DependencyScanning/CMakeLists.txt | 22 +++ .../DependencyScanningWorker.cpp | 149 +++++++++++++++++++++ lib/Tooling/Tooling.cpp | 7 +- test/ClangScanDeps/Inputs/regular_cdb.json | 2 +- test/ClangScanDeps/error.cpp | 21 +++ test/CodeGenCXX/ms-constexpr-var-template.cpp | 11 -- tools/clang-scan-deps/CMakeLists.txt | 1 + tools/clang-scan-deps/ClangScanDeps.cpp | 136 +++---------------- 12 files changed, 290 insertions(+), 146 deletions(-) create mode 100644 include/clang/Tooling/DependencyScanning/DependencyScanningWorker.h create mode 100644 lib/Tooling/DependencyScanning/CMakeLists.txt create mode 100644 lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp create mode 100644 test/ClangScanDeps/error.cpp delete mode 100644 test/CodeGenCXX/ms-constexpr-var-template.cpp