diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index 380aaa5a969..82749c08b5a 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -162,7 +162,7 @@ lldb_private::DisplayFramesForExecutionContext true, // Dump the stop reason? true, // Dump the thread name? true, // Dump the queue name? - 0); // Dump info for stack frame zero + num_frames > 1 ? UINT32_MAX : first_frame); // Dump info for the first stack frame if we are showing only on frame strm.EOL(); strm.IndentMore(); |