From c95407b0d51c84a511b0efc8a9a7a4e1b4574800 Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Tue, 9 Jul 2013 05:36:41 +0000 Subject: [PATCH] Add the frame content dumper function call to one more place. llvm-svn: 185906 --- lldb/examples/python/diagnose_unwind.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lldb/examples/python/diagnose_unwind.py b/lldb/examples/python/diagnose_unwind.py index 41da55f3f62d..e0b9305f2b06 100644 --- a/lldb/examples/python/diagnose_unwind.py +++ b/lldb/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: