Show both lldb-168 and earlier "bt -c 5" as well as lldb-169 and later "bt 5" usage.

llvm-svn: 166839
This commit is contained in:
Jason Molenda 2012-10-26 23:56:03 +00:00
parent ca76ecda8a
commit aba75e6495
1 changed files with 3 additions and 2 deletions

View File

@ -668,14 +668,15 @@
</td> </td>
</tr> </tr>
<tr><td class="header" colspan="2">Backtrace the first five frames of the current thread. (<i>NB: valid for lldb-169 and later</i>)</td></tr> <tr><td class="header" colspan="2">Backtrace the first five frames of the current thread.</td></tr>
<tr> <tr>
<td class="content"> <td class="content">
<b>(gdb)</b> bt 5 <b>(gdb)</b> bt 5
</td> </td>
<td class="content"> <td class="content">
<b>(lldb)</b> thread backtrace -c 5<br> <b>(lldb)</b> thread backtrace -c 5<br>
<b>(lldb)</b> bt 5 <b>(lldb)</b> bt 5 (<i>lldb-169 and later</i>)<br>
<b>(lldb)</b> bt -c 5 (<i>lldb-168 and earlier</i>)
</td> </td>
</tr> </tr>