diff options
author | Anders Carlsson <andersca@mac.com> | 2010-11-28 17:50:09 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-11-28 17:50:09 +0000 |
commit | 1af610f8533b8b4a7b0b176aa8082f5b6dde904c (patch) | |
tree | f413bd349cd54511c69b5fcde7d61b6347e81cfe /lib/CodeGen/CGCXXABI.cpp | |
parent | ee7cde2f391cc7c533c919848da09db715cd0a93 (diff) |
Make the destructor be the 'vtable anchor' of the CGCXXABI class.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120251 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGCXXABI.cpp')
-rw-r--r-- | lib/CodeGen/CGCXXABI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGCXXABI.cpp b/lib/CodeGen/CGCXXABI.cpp index 21fb732afc..627df43a28 100644 --- a/lib/CodeGen/CGCXXABI.cpp +++ b/lib/CodeGen/CGCXXABI.cpp @@ -17,7 +17,7 @@ using namespace clang; using namespace CodeGen; -void CGCXXABI::_anchor() {} +CGCXXABI::~CGCXXABI() { } static void ErrorUnsupportedABI(CodeGenFunction &CGF, llvm::StringRef S) { |