aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2013-07-09 05:36:41 +0000
committerJason Molenda <jmolenda@apple.com>2013-07-09 05:36:41 +0000
commitff1bf4d8390a38a443d749d6e5845264771d9bc2 (patch)
tree6d58b7deb50cf0a677efdcc7629970df7a269128 /examples
parent297fc67ce9907e4ccbc2a1a013bd4c593c1c9b3d (diff)
downloadlldb-ff1bf4d8390a38a443d749d6e5845264771d9bc2.tar.gz
Add the frame content dumper function call to one more place.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@185906 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/python/diagnose_unwind.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/python/diagnose_unwind.py b/examples/python/diagnose_unwind.py
index 41da55f3f..e0b9305f2 100644
--- a/examples/python/diagnose_unwind.py
+++ b/examples/python/diagnose_unwind.py
@@ -69,6 +69,8 @@ def simple_backtrace(debugger):
module_list = []
address_list = [cur_thread.GetFrameAtIndex(0).GetPC()]
this_module = backtrace_print_frame (target, 0, cur_thread.GetFrameAtIndex(0).GetPC(), initial_fp)
+ print_stack_frame (process, cur_fp)
+ print ""
if this_module != None:
module_list.append (this_module)
if cur_thread.GetNumFrames() < 2: