diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-05-19 19:58:41 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-05-19 19:58:41 +0000 |
commit | 9e086581c726753ae7459a4c77ea9b37c34c5500 (patch) | |
tree | 18cb4aec7982e5c6c740346600199e22b81c9566 /gdb/infrun.c | |
parent | 1ceea51453d4ef2d739ce4dfe5d7a74c9a32dc64 (diff) | |
download | gdb-9e086581c726753ae7459a4c77ea9b37c34c5500.zip gdb-9e086581c726753ae7459a4c77ea9b37c34c5500.tar.gz gdb-9e086581c726753ae7459a4c77ea9b37c34c5500.tar.bz2 |
import gdb-1999-0519
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; |