diff options
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index 7851ef8..81b288d 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -925,7 +925,7 @@ proceed (addr, siggnal, step) PREPARE_TO_PROCEED checks the current thread against the thread that reported the most recent event. If a step-over is required it returns TRUE and sets the current thread to the old thread. */ - if (PREPARE_TO_PROCEED () && breakpoint_here_p (read_pc ())) + if (PREPARE_TO_PROCEED (1) && breakpoint_here_p (read_pc ())) { oneproc = 1; thread_step_needed = 1; |