diff options
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index 7ec0788..3361926 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -4928,8 +4928,8 @@ process_event_stop_test: struct symtab_and_line tmp_sal; 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)) + if (tmp_sal.line != 0 + && !function_pc_is_marked_for_skip (ecs->stop_func_start)) { if (execution_direction == EXEC_REVERSE) handle_step_into_function_backward (gdbarch, ecs); |