Remove polymorphic destruction for DIE. DIEBlocks are owned elsewhere

and not polymorphically deleted and they are the only thing that derive
from DIE.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195183 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2013-11-20 00:54:31 +00:00
parent b88a94faaa
commit 9259787e4f

View File

@ -134,7 +134,7 @@ namespace llvm {
explicit DIE(unsigned Tag)
: Offset(0), Size(0), Abbrev((dwarf::Tag)Tag, dwarf::DW_CHILDREN_no),
Parent(0) {}
virtual ~DIE();
~DIE();
// Accessors.
DIEAbbrev &getAbbrev() { return Abbrev; }