diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-08-21 14:33:07 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-08-21 14:33:07 +0000 |
commit | abf85f464b67b4d7da4511fc293af8c8b0c4dc0a (patch) | |
tree | 68de5dfc0e1a0aab22c694248627ec111d622a1f /gdb/ChangeLog | |
parent | 66c70f7d554be3b1c4267e7213165aee3a59b0b1 (diff) | |
download | gdb-abf85f464b67b4d7da4511fc293af8c8b0c4dc0a.zip gdb-abf85f464b67b4d7da4511fc293af8c8b0c4dc0a.tar.gz gdb-abf85f464b67b4d7da4511fc293af8c8b0c4dc0a.tar.bz2 |
gdb/
Code cleanup.
* breakpoint.c (bpstat_clear_actions): Remove clearing of commands_left.
(command_line_is_silent): New function.
(bpstat_do_actions_1): No longer use commands_left, use
command_line_is_silent for commands.
(bpstat_alloc): Remove clearing of commands_left.
(bpstat_stop_status): Remove initialization of commands_left, use
command_line_is_silent.
* breakpoint.h (struct bpstats): Remove commands_left.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f6d8a17..46b77d2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,15 @@ +2011-08-21 Jan Kratochvil <jan.kratochvil@redhat.com> + + Code cleanup. + * breakpoint.c (bpstat_clear_actions): Remove clearing of commands_left. + (command_line_is_silent): New function. + (bpstat_do_actions_1): No longer use commands_left, use + command_line_is_silent for commands. + (bpstat_alloc): Remove clearing of commands_left. + (bpstat_stop_status): Remove initialization of commands_left, use + command_line_is_silent. + * breakpoint.h (struct bpstats): Remove commands_left. + 2011-08-18 Keith Seitz <keiths@redhat.com> PR c++/12266 |