aboutsummaryrefslogtreecommitdiff
path: root/gdb/breakpoint.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-06-27 00:09:01 +0000
committerAndrew Cagney <cagney@redhat.com>2001-06-27 00:09:01 +0000
commitd7faa9e713540e28182dcc3d08cfd6ff7c6dd4b6 (patch)
treeb796c766b173136f80bc3f1ad19e05d52d8788a3 /gdb/breakpoint.c
parent605121c0ec9960d3c0860db59e696b7e708da2b9 (diff)
downloadfsf-binutils-gdb-d7faa9e713540e28182dcc3d08cfd6ff7c6dd4b6.zip
fsf-binutils-gdb-d7faa9e713540e28182dcc3d08cfd6ff7c6dd4b6.tar.gz
fsf-binutils-gdb-d7faa9e713540e28182dcc3d08cfd6ff7c6dd4b6.tar.bz2
Always send the breakpoint table headers to ui-out. MI/CLI can
internally decide if they should be displayed.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r--gdb/breakpoint.c39
1 files changed, 22 insertions, 17 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 879a31e..20f7251 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -3598,29 +3598,34 @@ breakpoint_1 (int bnum, int allflag)
#ifdef UI_OUT
if (nr_printable_breakpoints > 0)
- {
- annotate_breakpoints_headers ();
- annotate_field (0);
- ui_out_table_header (uiout, 3, ui_left, "number", "Num"); /* 1 */
- annotate_field (1);
- ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */
- annotate_field (2);
- ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
- annotate_field (3);
- ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
- if (addressprint)
+ annotate_breakpoints_headers ();
+ if (nr_printable_breakpoints > 0)
+ annotate_field (0);
+ ui_out_table_header (uiout, 3, ui_left, "number", "Num"); /* 1 */
+ if (nr_printable_breakpoints > 0)
+ annotate_field (1);
+ ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */
+ if (nr_printable_breakpoints > 0)
+ annotate_field (2);
+ ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
+ if (nr_printable_breakpoints > 0)
+ annotate_field (3);
+ ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
+ if (addressprint)
{
- annotate_field (4);
+ if (nr_printable_breakpoints > 0)
+ annotate_field (4);
if (TARGET_ADDR_BIT <= 32)
ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
else
ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
}
- annotate_field (5);
- ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
- ui_out_table_body (uiout);
- annotate_breakpoints_table ();
- }
+ if (nr_printable_breakpoints > 0)
+ annotate_field (5);
+ ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
+ ui_out_table_body (uiout);
+ if (nr_printable_breakpoints > 0)
+ annotate_breakpoints_table ();
#else
if (nr_printable_breakpoints > 0)
{