mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 22:07:58 +08:00
2007-01-21 Markus Deuling <deuling@de.ibm.com>
* breakpoint.c (delete_command): Skip redundant loop iterations.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2007-01-21 Markus Deuling <deuling@de.ibm.com>
|
||||||
|
|
||||||
|
* breakpoint.c (delete_command): Skip redundant loop iterations.
|
||||||
|
|
||||||
2007-01-21 Daniel Jacobowitz <dan@codesourcery.com>
|
2007-01-21 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
* gdbarch.sh (register_type): Update comment.
|
* gdbarch.sh (register_type): Update comment.
|
||||||
|
@ -7125,7 +7125,10 @@ delete_command (char *arg, int from_tty)
|
|||||||
b->type != bp_thread_event &&
|
b->type != bp_thread_event &&
|
||||||
b->type != bp_overlay_event &&
|
b->type != bp_overlay_event &&
|
||||||
b->number >= 0)
|
b->number >= 0)
|
||||||
|
{
|
||||||
breaks_to_delete = 1;
|
breaks_to_delete = 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Ask user only if there are some breakpoints to delete. */
|
/* Ask user only if there are some breakpoints to delete. */
|
||||||
|
Reference in New Issue
Block a user