From: Zhongxing Xu Date: Mon, 10 Jan 2011 05:52:42 +0000 (+0000) Subject: ExprEngine.cpp and AnalysisConsumer.cpp should not be in the Checkers directory. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f1a4a82610c420c0ce430c6f459a3fc1ed8daba;p=clang 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 --- diff --git a/lib/StaticAnalyzer/Checkers/AnalysisConsumer.cpp b/lib/StaticAnalyzer/AnalysisConsumer.cpp similarity index 99% rename from lib/StaticAnalyzer/Checkers/AnalysisConsumer.cpp rename to 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 similarity index 99% rename from lib/StaticAnalyzer/Checkers/ExprEngine.cpp rename to 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"