From: Maciej W. Rozycki Date: Thu, 14 Jun 2012 21:15:19 +0000 (+0000) Subject: PR backtrace/13866 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1c5a993ebd24fea373b637014e452ff8a0a7a949;p=binutils-gdb.git PR backtrace/13866 * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch after hiding inline functions. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a69ce38e039..006123b8fb3 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2012-06-14 Maciej W. Rozycki + + PR backtrace/13866 + * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch + after hiding inline functions. + 2012-06-13 Joel Brobecker * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into diff --git a/gdb/infrun.c b/gdb/infrun.c index d40ba3e097c..a260620047f 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -4074,7 +4074,14 @@ handle_inferior_event (struct execution_control_state *ecs) && pc_at_non_inline_function (aspace, ecs->event_thread->prev_pc, &ecs->ws))) - skip_inline_frames (ecs->ptid); + { + skip_inline_frames (ecs->ptid); + + /* Re-fetch current thread's frame in case that invalidated + the frame cache. */ + frame = get_current_frame (); + gdbarch = get_frame_arch (frame); + } } if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP