git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144023
91177308-0d34-0410-b5e6-
96231b3b80d8
HeaderData(atom) {
}
+DwarfAccelTable::~DwarfAccelTable() {
+ for (size_t i = 0 ; i < Data.size(); ++i)
+ delete Data[i];
+}
+
void DwarfAccelTable::AddName(StringRef Name, DIE* die) {
// If the string is in the list already then add this die to the list
// otherwise add a new one.
// Public Implementation
public:
DwarfAccelTable(DwarfAccelTable::Atom Atom);
+ ~DwarfAccelTable();
void AddName(StringRef, DIE*);
void FinalizeTable(AsmPrinter *, const char *);
void Emit(AsmPrinter *, MCSymbol *, DwarfDebug *);