forked from Imagelibrary/binutils-gdb
* infrun.c (handle_inferior_event): Don't proceed through
shared library trampolines if stepping at the machine instruction level.
This commit is contained in:
@@ -5008,7 +5008,8 @@ process_event_stop_test:
|
||||
/* If we're in the return path from a shared library trampoline,
|
||||
we want to proceed through the trampoline when stepping. */
|
||||
if (gdbarch_in_solib_return_trampoline (gdbarch,
|
||||
stop_pc, ecs->stop_func_name))
|
||||
stop_pc, ecs->stop_func_name)
|
||||
&& ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
|
||||
{
|
||||
/* Determine where this trampoline returns. */
|
||||
CORE_ADDR real_stop_pc;
|
||||
|
||||
Reference in New Issue
Block a user