diff options
author | Doug Evans <dje@google.com> | 2008-12-02 19:20:23 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2008-12-02 19:20:23 +0000 |
commit | a020da562eb232b70d8669de08336d3e4736e8f7 (patch) | |
tree | 85992789f21767a94f534a9e4ac5b0d6dc0e06fb | |
parent | f7c83eacc72dc6e9c22c7309beeb3a010ea114b1 (diff) | |
download | gdb-a020da562eb232b70d8669de08336d3e4736e8f7.zip gdb-a020da562eb232b70d8669de08336d3e4736e8f7.tar.gz gdb-a020da562eb232b70d8669de08336d3e4736e8f7.tar.bz2 |
* infrun.c (handle_inferior_event): Remove redundant resetting of
stepping_past_singlestep_breakpoint.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/infrun.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 834c5a5..8d06e3f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2008-12-02 Doug Evans <dje@google.com> + + * infrun.c (handle_inferior_event): Remove redundant resetting of + stepping_past_singlestep_breakpoint. + 2008-12-02 Pedro Alves <pedro@codesourcery.com> * target.h (target_get_osdata): Describe. diff --git a/gdb/infrun.c b/gdb/infrun.c index c3d3eb7..6054950 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -2510,8 +2510,6 @@ targets should add new threads to the thread list themselves in non-stop mode.") } } - stepping_past_singlestep_breakpoint = 0; - if (!ptid_equal (deferred_step_ptid, null_ptid)) { /* In non-stop mode, there's never a deferred_step_ptid set. */ |