<< ")\n";
extractDIEsIfNeeded(false);
- for (unsigned i = 0, e = DieArray.size(); i != e; ++i)
- DieArray[i].dump(OS, this, 10);
+ DieArray[0].dump(OS, this, -1U);
}
void DWARFCompileUnit::setDIERelations() {
const DWARFDebugInfoEntryMinimal *child = getFirstChild();
if (recurseDepth > 0 && child) {
- indent += 2;
while (child) {
- child->dump(OS, cu, recurseDepth-1, indent);
+ child->dump(OS, cu, recurseDepth-1, indent+2);
child = child->getSibling();
}
- indent -= 2;
}
} else {
OS << "Abbreviation code not found in 'debug_abbrev' class for code: "
const DWARFAbbreviationDeclaration *AbbrevDecl;
public:
+ DWARFDebugInfoEntryMinimal()
+ : Offset(0), ParentIdx(0), SiblingIdx(0), AbbrevDecl(0) {}
+
void dump(raw_ostream &OS, const DWARFCompileUnit *cu,
unsigned recurseDepth, unsigned indent = 0) const;
void dumpAttribute(raw_ostream &OS, const DWARFCompileUnit *cu,