Fixed an indentation issue that only shows up when dumping .o files that use linked addresses (DWARF in .o files with debug map).

llvm-svn: 165740
This commit is contained in:
Greg Clayton 2012-10-11 20:42:53 +00:00
parent afaced070f
commit fc6d50e120
1 changed files with 1 additions and 1 deletions

View File

@ -304,7 +304,7 @@ Section::Dump (Stream *s, Target *target, uint32_t depth) const
addr = linked_section_sp->GetFileAddress() + m_linked_offset;
}
int indent = 26 + s->GetIndentLevel();
int indent = 28 + s->GetIndentLevel();
s->Printf("%*.*s", indent, indent, "");
VMRange linked_range(addr, addr + m_byte_size);
linked_range.Dump (s, 0);