diff options
author | Juergen Ributzka <juergen@apple.com> | 2013-12-14 12:23:14 +0000 |
---|---|---|
committer | Juergen Ributzka <juergen@apple.com> | 2013-12-14 12:23:14 +0000 |
commit | db9ee00b5940f8641cf67a65c07d850e138c7106 (patch) | |
tree | a22bea2e42da13a70641c50eb9b9e848e5b42b31 /llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | |
parent | 3d782a541000e3d9e68ed6860061ff84fbea302b (diff) | |
download | bcm5719-llvm-db9ee00b5940f8641cf67a65c07d850e138c7106.tar.gz bcm5719-llvm-db9ee00b5940f8641cf67a65c07d850e138c7106.zip |
Remove weak vtables. No functional change.
llvm-svn: 197323
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h index 6242a058cf8..98623db7a61 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h @@ -500,6 +500,7 @@ class DwarfCompileUnit : public DwarfUnit { public: DwarfCompileUnit(unsigned UID, DIE *D, DICompileUnit Node, AsmPrinter *A, DwarfDebug *DW, DwarfFile *DWU); + virtual ~DwarfCompileUnit() LLVM_OVERRIDE; /// createGlobalVariableDIE - create global variable DIE. void createGlobalVariableDIE(DIGlobalVariable GV); @@ -520,6 +521,7 @@ private: public: DwarfTypeUnit(unsigned UID, DIE *D, uint16_t Language, AsmPrinter *A, DwarfDebug *DW, DwarfFile *DWU); + virtual ~DwarfTypeUnit() LLVM_OVERRIDE; void setTypeSignature(uint64_t Signature) { TypeSignature = Signature; } void setType(const DIE *Ty) { this->Ty = Ty; } |