This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 4b32941328 Change dyn_cast<CXXMethodDecl>(FD) to isa<CXXMethodDecl>(FD) [NFC] new 1aaf4d6efd [analyzer] Delete SMTContext. NFC. new 420fb7b516 [analyzer] Templatefy SMTConstraintManager so more generic c [...] new 60783c8623 [analyzer] Moved all CSA code from the SMT API to a new head [...] new e29bf81102 [analyzer] added cache for SMT queries in the SMTConstraintManager
The 4 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: .../Core/PathSensitive/SMTConstraintManager.h | 235 ++++++- .../StaticAnalyzer/Core/PathSensitive/SMTContext.h | 31 - .../StaticAnalyzer/Core/PathSensitive/SMTConv.h | 750 +++++++++++++++++++++ .../StaticAnalyzer/Core/PathSensitive/SMTSolver.h | 690 +------------------ lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | 16 +- lib/StaticAnalyzer/Core/CMakeLists.txt | 1 - lib/StaticAnalyzer/Core/SMTConstraintManager.cpp | 181 ----- lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp | 80 +-- 8 files changed, 994 insertions(+), 990 deletions(-) delete mode 100644 include/clang/StaticAnalyzer/Core/PathSensitive/SMTContext.h create mode 100644 include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h delete mode 100644 lib/StaticAnalyzer/Core/SMTConstraintManager.cpp