aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2011-01-10 05:52:42 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2011-01-10 05:52:42 +0000
commit2f1a4a82610c420c0ce430c6f459a3fc1ed8daba (patch)
tree3d3394403411614cdc58aed88ad8df96e2f6268a
parent50f6aca5d7c41c6a5db75838c6a4d670cbb9b4f3 (diff)
ExprEngine.cpp and AnalysisConsumer.cpp should not be in the Checkers directory.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123160 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/StaticAnalyzer/AnalysisConsumer.cpp (renamed from lib/StaticAnalyzer/Checkers/AnalysisConsumer.cpp)4
-rw-r--r--lib/StaticAnalyzer/ExprEngine.cpp (renamed from lib/StaticAnalyzer/Checkers/ExprEngine.cpp)2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/StaticAnalyzer/Checkers/AnalysisConsumer.cpp b/lib/StaticAnalyzer/AnalysisConsumer.cpp
index ee4eae2ebf..f8a2319908 100644
--- a/lib/StaticAnalyzer/Checkers/AnalysisConsumer.cpp
+++ b/lib/StaticAnalyzer/AnalysisConsumer.cpp
@@ -30,8 +30,8 @@
#include "clang/StaticAnalyzer/PathDiagnosticClients.h"
// FIXME: Restructure checker registration.
-#include "ExprEngineExperimentalChecks.h"
-#include "ExprEngineInternalChecks.h"
+#include "Checkers/ExprEngineExperimentalChecks.h"
+#include "Checkers/ExprEngineInternalChecks.h"
#include "clang/Basic/FileManager.h"
#include "clang/Basic/SourceManager.h"
diff --git a/lib/StaticAnalyzer/Checkers/ExprEngine.cpp b/lib/StaticAnalyzer/ExprEngine.cpp
index ca960142ee..0ae02d86e2 100644
--- a/lib/StaticAnalyzer/Checkers/ExprEngine.cpp
+++ b/lib/StaticAnalyzer/ExprEngine.cpp
@@ -14,7 +14,7 @@
//===----------------------------------------------------------------------===//
// FIXME: Restructure checker registration.
-#include "ExprEngineInternalChecks.h"
+#include "Checkers/ExprEngineInternalChecks.h"
#include "clang/StaticAnalyzer/BugReporter/BugType.h"
#include "clang/StaticAnalyzer/PathSensitive/AnalysisManager.h"