diff options
| author | Greg Clayton <gclayton@apple.com> | 2015-02-25 17:22:05 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2015-02-25 17:22:05 +0000 |
| commit | 2d9ce1926c3582398f8ee9d84c5b3735fb1dc218 (patch) | |
| tree | e302a63ef9421b4ac62a8c0980978d4036615e90 /lldb/source/Symbol | |
| parent | 5c3f1c91f23dc6645d673c98da53bed88239a0d7 (diff) | |
| download | bcm5719-llvm-2d9ce1926c3582398f8ee9d84c5b3735fb1dc218.tar.gz bcm5719-llvm-2d9ce1926c3582398f8ee9d84c5b3735fb1dc218.zip | |
Fix the dumping of symbol tables to be correctly alligned for all entries when using "image dump symtab".
llvm-svn: 230508
Diffstat (limited to 'lldb/source/Symbol')
| -rw-r--r-- | lldb/source/Symbol/Symbol.cpp | 5 | ||||
| -rw-r--r-- | lldb/source/Symbol/Symtab.cpp | 4 |
2 files changed, 3 insertions, 6 deletions
diff --git a/lldb/source/Symbol/Symbol.cpp b/lldb/source/Symbol/Symbol.cpp index 39d78617bfb..c1d032c0b37 100644 --- a/lldb/source/Symbol/Symbol.cpp +++ b/lldb/source/Symbol/Symbol.cpp @@ -291,10 +291,7 @@ Symbol::GetDescription (Stream *s, lldb::DescriptionLevel level, Target *target) void Symbol::Dump(Stream *s, Target *target, uint32_t index) const { -// s->Printf("%.*p: ", (int)sizeof(void*) * 2, this); -// s->Indent(); -// s->Printf("Symbol[%5u] %6u %c%c %-12s ", - s->Printf("[%5u] %6u %c%c%c %-12s ", + s->Printf("[%5u] %6u %c%c%c %-15s ", index, GetID(), m_is_debug ? 'D' : ' ', diff --git a/lldb/source/Symbol/Symtab.cpp b/lldb/source/Symbol/Symtab.cpp index 907072c0d90..1f4afdfd6ac 100644 --- a/lldb/source/Symbol/Symtab.cpp +++ b/lldb/source/Symbol/Symtab.cpp @@ -201,8 +201,8 @@ Symtab::DumpSymbolHeader (Stream *s) s->Indent(" |Synthetic symbol\n"); s->Indent(" ||Externally Visible\n"); s->Indent(" |||\n"); - s->Indent("Index UserID DSX Type File Address/Value Load Address Size Flags Name\n"); - s->Indent("------- ------ --- ------------ ------------------ ------------------ ------------------ ---------- ----------------------------------\n"); + s->Indent("Index UserID DSX Type File Address/Value Load Address Size Flags Name\n"); + s->Indent("------- ------ --- --------------- ------------------ ------------------ ------------------ ---------- ----------------------------------\n"); } |

