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 | 1266eca868fa0ac799291ed04f349c9bbd7a9469 (patch) | |
tree | 63053a12708e4b39162013f0e53759a4cee6a97f /lib/AST/TranslationUnit.cpp | |
parent | 557c5b1717bc8919b1b40cf2064b51491ec53a44 (diff) |
remove TranslationUnit.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67914 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/TranslationUnit.cpp')
-rw-r--r-- | lib/AST/TranslationUnit.cpp | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/AST/TranslationUnit.cpp b/lib/AST/TranslationUnit.cpp deleted file mode 100644 index 0c69432014..0000000000 --- a/lib/AST/TranslationUnit.cpp +++ /dev/null @@ -1,31 +0,0 @@ -//===--- TranslationUnit.cpp - Abstraction for Translation Units ----------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -// FIXME: This should eventually be moved out of the driver, or replaced -// with its eventual successor. -// -//===----------------------------------------------------------------------===// - -#include "clang/AST/TranslationUnit.h" - -#include "clang/Basic/TargetInfo.h" -#include "clang/Basic/SourceManager.h" -#include "clang/AST/AST.h" - -#include "llvm/Bitcode/Serialize.h" -#include "llvm/Bitcode/Deserialize.h" -#include "llvm/Support/MemoryBuffer.h" -#include "llvm/System/Path.h" - -#include "llvm/ADT/OwningPtr.h" -#include "llvm/ADT/DenseSet.h" - -using namespace clang; - - -TranslationUnit::~TranslationUnit() { -} |