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/Symbol.cpp | |
| 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/Symbol.cpp')
| -rw-r--r-- | lldb/source/Symbol/Symbol.cpp | 5 |
1 files changed, 1 insertions, 4 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' : ' ', |

