This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from e1200565f6 [AMDGPU] Split dot-insts feature new 7b7f1a3de9 This reverts commit 1440a848a635849b97f7a5cfa0ecc40d37451f5b [...]
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: CMakeLists.txt | 27 +- cmake/modules/FindZ3.cmake | 51 ++ include/clang/Config/config.h.cmake | 3 + .../StaticAnalyzer/Core/PathSensitive/SMTAPI.h | 404 ++++++++++ .../Core/PathSensitive/SMTConstraintManager.h | 25 +- .../StaticAnalyzer/Core/PathSensitive/SMTConv.h | 227 +++--- lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | 4 +- lib/StaticAnalyzer/Core/CMakeLists.txt | 16 +- lib/StaticAnalyzer/Core/SMTConstraintManager.cpp | 18 - lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp | 835 +++++++++++++++++++++ test/CMakeLists.txt | 2 +- test/lit.site.cfg.py.in | 2 +- 12 files changed, 1457 insertions(+), 157 deletions(-) create mode 100644 cmake/modules/FindZ3.cmake create mode 100644 include/clang/StaticAnalyzer/Core/PathSensitive/SMTAPI.h delete mode 100644 lib/StaticAnalyzer/Core/SMTConstraintManager.cpp create mode 100644 lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp