[Lldb-commits] [lldb] r165740 - /lldb/trunk/source/Core/Section.cpp

Greg Clayton gclayton at apple.com
Thu Oct 11 13:42:53 PDT 2012


Author: gclayton
Date: Thu Oct 11 15:42:53 2012
New Revision: 165740

URL: http://llvm.org/viewvc/llvm-project?rev=165740&view=rev
Log:
Fixed an indentation issue that only shows up when dumping .o files that use linked addresses (DWARF in .o files with debug map).


Modified:
    lldb/trunk/source/Core/Section.cpp

Modified: lldb/trunk/source/Core/Section.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Section.cpp?rev=165740&r1=165739&r2=165740&view=diff
==============================================================================
--- lldb/trunk/source/Core/Section.cpp (original)
+++ lldb/trunk/source/Core/Section.cpp Thu Oct 11 15:42:53 2012
@@ -304,7 +304,7 @@
             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);





More information about the lldb-commits mailing list