diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-09 15:51:31 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-09 15:51:31 +0000 |
commit | 2979ec73b4f974d85f2ce84167712177a44c6f09 (patch) | |
tree | 83b8ac4d14aee0091055acd1a9ad332eba3e9a13 /lib/CodeGen/CGObjCGNU.cpp | |
parent | 393be155a8e01106324485389b93d50c021868a5 (diff) |
The dtor CGObjCRuntime::~CGObjCRuntime() was implemented twice, once
in CGObjCGNU.cpp and once in CGObjCEtoile.cpp. Moved its definition to
CGObjC.cpp. This resolves a build error in Xcode, and also cleans things up.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49429 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGObjCGNU.cpp')
-rw-r--r-- | lib/CodeGen/CGObjCGNU.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/CodeGen/CGObjCGNU.cpp b/lib/CodeGen/CGObjCGNU.cpp index 9d97d475ca..7fc3eca6ce 100644 --- a/lib/CodeGen/CGObjCGNU.cpp +++ b/lib/CodeGen/CGObjCGNU.cpp @@ -17,9 +17,6 @@ #include "llvm/Support/LLVMBuilder.h" #include "llvm/ADT/SmallVector.h" - -clang::CodeGen::CGObjCRuntime::~CGObjCRuntime() {} - namespace { class CGObjCGNU : public clang::CodeGen::CGObjCRuntime { private: |