diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/breakpoint.c | 10 |
2 files changed, 12 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1311dc0..48c9446 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2011-03-04 Michael Snyder <msnyder@msnyder-server.eng.vmware.com> + + * breakpoint.c (enable_command): Use break instead of continue, + and fill in a missing break. + (disable_command): Ditto. + 2011-03-04 Ulrich Weigand <ulrich.weigand@linaro.org> * inflow.c (terminal_init_inferior_with_pgrp): Copy ttystate. diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index cea7405..6f087b3 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -10930,7 +10930,7 @@ disable_command (char *args, int from_tty) case bp_none: warning (_("attempted to disable apparently deleted breakpoint #%d?"), bpt->number); - continue; + break; case bp_breakpoint: case bp_tracepoint: case bp_fast_tracepoint: @@ -10942,8 +10942,9 @@ disable_command (char *args, int from_tty) case bp_read_watchpoint: case bp_access_watchpoint: disable_breakpoint (bpt); + break; default: - continue; + break; } else if (strchr (args, '.')) { @@ -11031,7 +11032,7 @@ enable_command (char *args, int from_tty) case bp_none: warning (_("attempted to enable apparently deleted breakpoint #%d?"), bpt->number); - continue; + break; case bp_breakpoint: case bp_tracepoint: case bp_fast_tracepoint: @@ -11043,8 +11044,9 @@ enable_command (char *args, int from_tty) case bp_read_watchpoint: case bp_access_watchpoint: enable_breakpoint (bpt); + break; default: - continue; + break; } else if (strchr (args, '.')) { |