diff options
author | Jim Ingham <jingham@apple.com> | 2011-07-26 02:39:59 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-07-26 02:39:59 +0000 |
commit | 5c4df7a4d6751d58f8e1752aea4b7187c00b1d5e (patch) | |
tree | 92af08469f64e275169555eba68f2a461a779b8b /lldb/source/Target/Thread.cpp | |
parent | d600a0f87876842db56d0aa01e609db420345cee (diff) | |
download | bcm5719-llvm-5c4df7a4d6751d58f8e1752aea4b7187c00b1d5e.tar.gz bcm5719-llvm-5c4df7a4d6751d58f8e1752aea4b7187c00b1d5e.zip |
Indent the frames in the "thread.GetStatus" frame listing. Also put the same space after each thread listing for "thread backtrace all" as "thread backtrace 1 3 5"
llvm-svn: 136052
Diffstat (limited to 'lldb/source/Target/Thread.cpp')
-rw-r--r-- | lldb/source/Target/Thread.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp index b1a3c15b6b3..267f1fc8999 100644 --- a/lldb/source/Target/Thread.cpp +++ b/lldb/source/Target/Thread.cpp @@ -1126,6 +1126,7 @@ Thread::GetStatus (Stream &strm, uint32_t start_frame, uint32_t num_frames, uint const bool show_frame_info = true; const uint32_t source_lines_before = 3; const uint32_t source_lines_after = 3; + strm.IndentMore (); num_frames_shown = GetStackFrameList ().GetStatus (strm, start_frame, num_frames, @@ -1134,6 +1135,7 @@ Thread::GetStatus (Stream &strm, uint32_t start_frame, uint32_t num_frames, uint source_lines_before, source_lines_after); strm.IndentLess(); + strm.IndentLess(); } return num_frames_shown; } |