diff options
author | Anders Carlsson <andersca@mac.com> | 2009-09-01 21:12:16 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-09-01 21:12:16 +0000 |
commit | de738fe899b5c1d387dbc66a1122032e694d3d6f (patch) | |
tree | f467378f4b85e59503a4dcaf664eeb3c050797b5 /lib/CodeGen/CGCXX.cpp | |
parent | 72f6d678c8de9f3a770e8ae5fc4979abf3940668 (diff) |
Assert that we don't have any virtual bases. We can emit dtors for polymorphics classes just fune.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80722 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGCXX.cpp')
-rw-r--r-- | lib/CodeGen/CGCXX.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGCXX.cpp b/lib/CodeGen/CGCXX.cpp index d71597fd93..8f9147306c 100644 --- a/lib/CodeGen/CGCXX.cpp +++ b/lib/CodeGen/CGCXX.cpp @@ -1744,8 +1744,8 @@ void CodeGenFunction::EmitCtorPrologue(const CXXConstructorDecl *CD) { /// FIXME: This needs to take a CXXDtorType. void CodeGenFunction::EmitDtorEpilogue(const CXXDestructorDecl *DD) { const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(DD->getDeclContext()); - assert(!ClassDecl->isPolymorphic() && - "FIXME. polymorphic destruction not supported"); + assert(!ClassDecl->getNumVBases() && + "FIXME: Destruction of virtual bases not supported"); (void)ClassDecl; // prevent warning. for (CXXDestructorDecl::destr_const_iterator *B = DD->destr_begin(), |