diff options
| author | Ted Kremenek <kremenek@apple.com> | 2012-10-30 04:43:51 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2012-10-30 04:43:51 +0000 |
| commit | 8de92c0fd41b8feba9ce3a49e75a0b79a220b376 (patch) | |
| tree | 845a5dcb0d56b0d51b9572d941e492198d74a4ed /clang/lib | |
| parent | 92d96604d54c2cef6416bf7b4810aa1ebb98010b (diff) | |
| download | bcm5719-llvm-8de92c0fd41b8feba9ce3a49e75a0b79a220b376.tar.gz bcm5719-llvm-8de92c0fd41b8feba9ce3a49e75a0b79a220b376.zip | |
Trim #includes.
llvm-svn: 167002
Diffstat (limited to 'clang/lib')
| -rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp index 00bff53f993..59e03ecd5c6 100644 --- a/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp @@ -13,17 +13,15 @@ //===----------------------------------------------------------------------===// #include "ClangSACheckers.h" -#include "clang/StaticAnalyzer/Core/Checker.h" -#include "clang/Analysis/Analyses/LiveVariables.h" -#include "clang/Analysis/Visitors/CFGRecStmtVisitor.h" -#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h" -#include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h" -#include "clang/Analysis/Visitors/CFGRecStmtDeclVisitor.h" -#include "clang/Basic/Diagnostic.h" #include "clang/AST/ASTContext.h" #include "clang/AST/ParentMap.h" #include "clang/AST/RecursiveASTVisitor.h" -#include "llvm/ADT/SmallPtrSet.h" +#include "clang/Analysis/Analyses/LiveVariables.h" +#include "clang/Analysis/Visitors/CFGRecStmtDeclVisitor.h" +#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h" +#include "clang/StaticAnalyzer/Core/Checker.h" +#include "clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h" +#include "llvm/ADT/BitVector.h" #include "llvm/ADT/SmallString.h" #include "llvm/Support/SaveAndRestore.h" |

