diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2011-01-10 09:23:01 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2011-01-10 09:23:01 +0000 |
commit | 0742f181e5562ae49fb303d90ceb3955ed9f84ed (patch) | |
tree | 99bac4c3a6f039b9a42fedf88806cd2db6883f4f | |
parent | d3731198193eee92796ddeb493973b7a598b003e (diff) |
Revert r123160. There are linking dependency problems.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123166 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/StaticAnalyzer/Checkers/AnalysisConsumer.cpp (renamed from lib/StaticAnalyzer/AnalysisConsumer.cpp) | 4 | ||||
-rw-r--r-- | lib/StaticAnalyzer/Checkers/ExprEngine.cpp (renamed from lib/StaticAnalyzer/ExprEngine.cpp) | 2 | ||||
-rw-r--r-- | tools/driver/Makefile | 3 |
3 files changed, 5 insertions, 4 deletions
diff --git a/lib/StaticAnalyzer/AnalysisConsumer.cpp b/lib/StaticAnalyzer/Checkers/AnalysisConsumer.cpp index f8a2319908..ee4eae2ebf 100644 --- a/lib/StaticAnalyzer/AnalysisConsumer.cpp +++ b/lib/StaticAnalyzer/Checkers/AnalysisConsumer.cpp @@ -30,8 +30,8 @@ #include "clang/StaticAnalyzer/PathDiagnosticClients.h" // FIXME: Restructure checker registration. -#include "Checkers/ExprEngineExperimentalChecks.h" -#include "Checkers/ExprEngineInternalChecks.h" +#include "ExprEngineExperimentalChecks.h" +#include "ExprEngineInternalChecks.h" #include "clang/Basic/FileManager.h" #include "clang/Basic/SourceManager.h" diff --git a/lib/StaticAnalyzer/ExprEngine.cpp b/lib/StaticAnalyzer/Checkers/ExprEngine.cpp index 0ae02d86e2..ca960142ee 100644 --- a/lib/StaticAnalyzer/ExprEngine.cpp +++ b/lib/StaticAnalyzer/Checkers/ExprEngine.cpp @@ -14,7 +14,7 @@ //===----------------------------------------------------------------------===// // FIXME: Restructure checker registration. -#include "Checkers/ExprEngineInternalChecks.h" +#include "ExprEngineInternalChecks.h" #include "clang/StaticAnalyzer/BugReporter/BugType.h" #include "clang/StaticAnalyzer/PathSensitive/AnalysisManager.h" diff --git a/tools/driver/Makefile b/tools/driver/Makefile index 9942310e4f..c01db5488e 100644 --- a/tools/driver/Makefile +++ b/tools/driver/Makefile @@ -39,7 +39,8 @@ LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader bitwriter codegen \ ipo selectiondag USEDLIBS = clangFrontendTool.a clangFrontend.a clangDriver.a \ clangSerialization.a clangCodeGen.a clangParse.a clangSema.a \ - clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a clangAnalysis.a clangIndex.a clangRewrite.a \ + clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a \ + clangAnalysis.a clangIndex.a clangRewrite.a \ clangAST.a clangLex.a clangBasic.a include $(CLANG_LEVEL)/Makefile |