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/Symtab.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/Symtab.cpp')
| -rw-r--r-- | lldb/source/Symbol/Symtab.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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"); } |

