From: Argyrios Kyrtzidis Date: Tue, 1 Mar 2011 01:24:23 +0000 (+0000) Subject: [analyzer] Move lib/StaticAnalyzer/Checkers/ExprEngine.cpp -> lib/StaticAnalyzer... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7636d8853f4b96be2fa394eb59047ccad37efa4c;p=clang [analyzer] Move lib/StaticAnalyzer/Checkers/ExprEngine.cpp -> lib/StaticAnalyzer/Core and hope the wrath of the buildbots will not descend upon me. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126728 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Checkers/CMakeLists.txt b/lib/StaticAnalyzer/Checkers/CMakeLists.txt index 5183ad547b..96e7c19d09 100644 --- a/lib/StaticAnalyzer/Checkers/CMakeLists.txt +++ b/lib/StaticAnalyzer/Checkers/CMakeLists.txt @@ -27,7 +27,6 @@ add_clang_library(clangStaticAnalyzerCheckers DebugCheckers.cpp DereferenceChecker.cpp DivZeroChecker.cpp - ExprEngine.cpp FixedAddressChecker.cpp IdempotentOperationChecker.cpp LLVMConventionsChecker.cpp diff --git a/lib/StaticAnalyzer/Core/CMakeLists.txt b/lib/StaticAnalyzer/Core/CMakeLists.txt index 3e518931ea..fe83dbe2fc 100644 --- a/lib/StaticAnalyzer/Core/CMakeLists.txt +++ b/lib/StaticAnalyzer/Core/CMakeLists.txt @@ -16,6 +16,7 @@ add_clang_library(clangStaticAnalyzerCore CheckerManager.cpp Environment.cpp ExplodedGraph.cpp + ExprEngine.cpp FlatStore.cpp BlockCounter.cpp CXXExprEngine.cpp diff --git a/lib/StaticAnalyzer/Checkers/ExprEngine.cpp b/lib/StaticAnalyzer/Core/ExprEngine.cpp similarity index 100% rename from lib/StaticAnalyzer/Checkers/ExprEngine.cpp rename to lib/StaticAnalyzer/Core/ExprEngine.cpp