Moved everything SMT-related to LLVM and updated the cmake scripts.
authorMikhail R. Gadelha <mikhail.ramalho@gmail.com>
Mon, 25 Mar 2019 17:47:45 +0000 (17:47 +0000)
committerMikhail R. Gadelha <mikhail.ramalho@gmail.com>
Mon, 25 Mar 2019 17:47:45 +0000 (17:47 +0000)
commitdb695c834f2caa818637b4d81a3c08c9c9abfd05
tree21742997947c5a9c1e589c3685703e02d6cd5573
parentfc67176eec7e603f786854850104cd750385393f
Moved everything SMT-related to LLVM and updated the cmake scripts.

Differential Revision: https://reviews.llvm.org/D54978

llvm-svn: 356929
19 files changed:
clang/CMakeLists.txt
clang/cmake/modules/FindZ3.cmake
clang/include/clang/Config/config.h.cmake
clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTAPI.h [deleted file]
clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h
clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
clang/lib/StaticAnalyzer/Core/CMakeLists.txt
clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp [new file with mode: 0644]
clang/lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp [deleted file]
clang/test/CMakeLists.txt
clang/test/lit.site.cfg.py.in
llvm/CMakeLists.txt
llvm/cmake/modules/FindZ3.cmake [new file with mode: 0644]
llvm/cmake/modules/LLVMConfig.cmake.in
llvm/include/llvm/Config/config.h.cmake
llvm/include/llvm/Support/SMTAPI.h [new file with mode: 0644]
llvm/lib/Support/CMakeLists.txt
llvm/lib/Support/Z3Solver.cpp [new file with mode: 0644]