diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-28 04:31:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-28 04:31:31 +0000 |
commit | 1ad4eeb9c77cd7fb65f98b6192e1e03166fef6da (patch) | |
tree | 37adb718a0387e535824ba51c300b3230362459e /clang/tools/clang-cc/SerializationTest.cpp | |
parent | a5adead17bb94f8517cd85f28aad57de785feaa1 (diff) | |
download | bcm5719-llvm-1ad4eeb9c77cd7fb65f98b6192e1e03166fef6da.tar.gz bcm5719-llvm-1ad4eeb9c77cd7fb65f98b6192e1e03166fef6da.zip |
remove TranslationUnit.
llvm-svn: 67914
Diffstat (limited to 'clang/tools/clang-cc/SerializationTest.cpp')
-rw-r--r-- | clang/tools/clang-cc/SerializationTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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; |