diff options
| author | Zhongxing Xu <xuzhongxing@gmail.com> | 2011-01-10 05:52:42 +0000 |
|---|---|---|
| committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2011-01-10 05:52:42 +0000 |
| commit | 7d4ab7d915a140859534ec020eea49e409f59066 (patch) | |
| tree | 875efe760e69a6f886266e179cc4e538842f7edc | |
| parent | 03f169ef71630114db1d0518e90bfab7878d01ad (diff) | |
| download | bcm5719-llvm-7d4ab7d915a140859534ec020eea49e409f59066.tar.gz bcm5719-llvm-7d4ab7d915a140859534ec020eea49e409f59066.zip | |
ExprEngine.cpp and AnalysisConsumer.cpp should not be in the Checkers directory.
llvm-svn: 123160
| -rw-r--r-- | clang/lib/StaticAnalyzer/AnalysisConsumer.cpp (renamed from clang/lib/StaticAnalyzer/Checkers/AnalysisConsumer.cpp) | 4 | ||||
| -rw-r--r-- | clang/lib/StaticAnalyzer/ExprEngine.cpp (renamed from clang/lib/StaticAnalyzer/Checkers/ExprEngine.cpp) | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/AnalysisConsumer.cpp b/clang/lib/StaticAnalyzer/AnalysisConsumer.cpp index ee4eae2ebfa..f8a23199088 100644 --- a/clang/lib/StaticAnalyzer/Checkers/AnalysisConsumer.cpp +++ b/clang/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/clang/lib/StaticAnalyzer/Checkers/ExprEngine.cpp b/clang/lib/StaticAnalyzer/ExprEngine.cpp index ca960142ee3..0ae02d86e26 100644 --- a/clang/lib/StaticAnalyzer/Checkers/ExprEngine.cpp +++ b/clang/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" |

