Add the frame content dumper function call to one more place.

llvm-svn: 185906
This commit is contained in:
Jason Molenda 2013-07-09 05:36:41 +00:00
parent 0f3de64ddf
commit c95407b0d5
1 changed files with 2 additions and 0 deletions

View File

@ -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: