diff options
Diffstat (limited to 'clang/tools')
-rw-r--r-- | clang/tools/clang-cc/AnalysisConsumer.cpp | 2 | ||||
-rw-r--r-- | clang/tools/clang-cc/SerializationTest.cpp | 3 | ||||
-rw-r--r-- | clang/tools/clang-cc/clang.cpp | 4 |
3 files changed, 4 insertions, 5 deletions
diff --git a/clang/tools/clang-cc/AnalysisConsumer.cpp b/clang/tools/clang-cc/AnalysisConsumer.cpp index 03e7ecc8af4..366f3844f53 100644 --- a/clang/tools/clang-cc/AnalysisConsumer.cpp +++ b/clang/tools/clang-cc/AnalysisConsumer.cpp @@ -25,7 +25,6 @@ #include "clang/Basic/SourceManager.h" #include "clang/Basic/FileManager.h" #include "clang/AST/ParentMap.h" -#include "clang/AST/TranslationUnit.h" #include "clang/Analysis/PathSensitive/BugReporter.h" #include "clang/Analysis/Analyses/LiveVariables.h" #include "clang/Analysis/LocalCheckers.h" @@ -36,7 +35,6 @@ #include "llvm/Support/raw_ostream.h" #include "llvm/System/Path.h" #include "llvm/System/Program.h" -#include <vector> using namespace clang; diff --git a/clang/tools/clang-cc/SerializationTest.cpp b/clang/tools/clang-cc/SerializationTest.cpp index a39811fd90e..74ccb4b4d1f 100644 --- a/clang/tools/clang-cc/SerializationTest.cpp +++ b/clang/tools/clang-cc/SerializationTest.cpp @@ -15,14 +15,15 @@ //===----------------------------------------------------------------------===// #include "clang/AST/ASTConsumer.h" +#include "clang/AST/ASTContext.h" #include "clang/AST/CFG.h" #include "clang/AST/Decl.h" #include "clang.h" #include "ASTConsumers.h" -#include "clang/AST/TranslationUnit.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/ADT/OwningPtr.h" #include "llvm/Support/Streams.h" +#include "llvm/System/Path.h" #include <fstream> #include <cstring> using namespace clang; diff --git a/clang/tools/clang-cc/clang.cpp b/clang/tools/clang-cc/clang.cpp index 31a39587662..c0a2ae726b4 100644 --- a/clang/tools/clang-cc/clang.cpp +++ b/clang/tools/clang-cc/clang.cpp @@ -31,12 +31,12 @@ #include "clang/Frontend/TextDiagnosticBuffer.h" #include "clang/Frontend/TextDiagnosticPrinter.h" #include "clang/Analysis/PathDiagnostic.h" -#include "clang/AST/Decl.h" -#include "clang/AST/TranslationUnit.h" #include "clang/CodeGen/ModuleBuilder.h" #include "clang/Sema/ParseAST.h" #include "clang/Sema/SemaDiagnostic.h" #include "clang/AST/ASTConsumer.h" +#include "clang/AST/ASTContext.h" +#include "clang/AST/Decl.h" #include "clang/Parse/Parser.h" #include "clang/Lex/HeaderSearch.h" #include "clang/Lex/LexDiagnostic.h" |