diff options
author | Pedro Alves <palves@redhat.com> | 2008-10-14 20:49:02 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-10-14 20:49:02 +0000 |
commit | 63c715c603b979fe95172c1873247a0ec0bff849 (patch) | |
tree | 2c40c7ab66d98086a7c25d8524a12e78650cfa7f /gdb/breakpoint.c | |
parent | 0a8b3393b084336b85f4c4cc80f25ff587365860 (diff) | |
download | gdb-63c715c603b979fe95172c1873247a0ec0bff849.zip gdb-63c715c603b979fe95172c1873247a0ec0bff849.tar.gz gdb-63c715c603b979fe95172c1873247a0ec0bff849.tar.bz2 |
Remove dead code.
* breakpoint.c (show_breakpoint_hit_counts): Delete.
(print_one_breakpoint_location): Adjust.
(breakpoint_clear_ignore_counts): Delete.
* breakpoint.h (breakpoint_clear_ignore_counts): Remove
declaration.
* target.c (generic_mourn_inferior): Don't clear ignore
counts (never reached).
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 6e863d7..b289ead 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -315,10 +315,6 @@ static int overlay_events_enabled; B ? (TMP=B->global_next, 1): 0; \ B = TMP) -/* True if breakpoint hit counts should be displayed in breakpoint info. */ - -int show_breakpoint_hit_counts = 1; - /* Chains of all breakpoints defined. */ struct breakpoint *breakpoint_chain; @@ -3812,7 +3808,7 @@ print_one_breakpoint_location (struct breakpoint *b, ui_out_text (uiout, "\n"); } - if (!part_of_multiple && show_breakpoint_hit_counts && b->hit_count) + if (!part_of_multiple && b->hit_count) { /* FIXME should make an annotation for this */ if (ep_is_catchpoint (b)) @@ -3830,7 +3826,7 @@ print_one_breakpoint_location (struct breakpoint *b, /* Output the count also if it is zero, but only if this is mi. FIXME: Should have a better test for this. */ if (ui_out_is_mi_like_p (uiout)) - if (!part_of_multiple && show_breakpoint_hit_counts && b->hit_count == 0) + if (!part_of_multiple && b->hit_count == 0) ui_out_field_int (uiout, "times", b->hit_count); if (!part_of_multiple && b->ignore_count) @@ -7731,16 +7727,6 @@ set_ignore_count (int bptnum, int count, int from_tty) error (_("No breakpoint number %d."), bptnum); } -/* Clear the ignore counts of all breakpoints. */ -void -breakpoint_clear_ignore_counts (void) -{ - struct breakpoint *b; - - ALL_BREAKPOINTS (b) - b->ignore_count = 0; -} - /* Command to set ignore-count of breakpoint N to COUNT. */ static void |