diff options
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index b036682..27b6d20 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -4976,7 +4976,8 @@ process_event_stop_test: tmp_sal = find_pc_line (ecs->stop_func_start, 0); if (tmp_sal.line != 0 - && !function_pc_is_marked_for_skip (ecs->stop_func_start)) + && !function_name_is_marked_for_skip (ecs->stop_func_name, + &tmp_sal)) { if (execution_direction == EXEC_REVERSE) handle_step_into_function_backward (gdbarch, ecs); |