Always send the breakpoint table headers to ui-out. MI/CLI can
internally decide if they should be displayed.
This commit is contained in:
parent
605121c0ec
commit
d7faa9e713
@ -1,3 +1,8 @@
|
|||||||
|
2001-06-26 Andrew Cagney <ac131313@redhat.com>
|
||||||
|
|
||||||
|
* breakpoint.c (breakpoint_1): Always output the breakpoint
|
||||||
|
headings. Leave it to ui-out to decide which
|
||||||
|
|
||||||
2001-06-25 Andrew Cagney <ac131313@redhat.com>
|
2001-06-25 Andrew Cagney <ac131313@redhat.com>
|
||||||
|
|
||||||
* stack.c (print_frame): For ui_out, output a list of arguments.
|
* stack.c (print_frame): For ui_out, output a list of arguments.
|
||||||
|
@ -3598,29 +3598,34 @@ breakpoint_1 (int bnum, int allflag)
|
|||||||
|
|
||||||
#ifdef UI_OUT
|
#ifdef UI_OUT
|
||||||
if (nr_printable_breakpoints > 0)
|
if (nr_printable_breakpoints > 0)
|
||||||
{
|
annotate_breakpoints_headers ();
|
||||||
annotate_breakpoints_headers ();
|
if (nr_printable_breakpoints > 0)
|
||||||
annotate_field (0);
|
annotate_field (0);
|
||||||
ui_out_table_header (uiout, 3, ui_left, "number", "Num"); /* 1 */
|
ui_out_table_header (uiout, 3, ui_left, "number", "Num"); /* 1 */
|
||||||
annotate_field (1);
|
if (nr_printable_breakpoints > 0)
|
||||||
ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */
|
annotate_field (1);
|
||||||
annotate_field (2);
|
ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */
|
||||||
ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
|
if (nr_printable_breakpoints > 0)
|
||||||
annotate_field (3);
|
annotate_field (2);
|
||||||
ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
|
ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
|
||||||
if (addressprint)
|
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)
|
if (TARGET_ADDR_BIT <= 32)
|
||||||
ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
|
ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
|
||||||
else
|
else
|
||||||
ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
|
ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
|
||||||
}
|
}
|
||||||
annotate_field (5);
|
if (nr_printable_breakpoints > 0)
|
||||||
ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
|
annotate_field (5);
|
||||||
ui_out_table_body (uiout);
|
ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
|
||||||
annotate_breakpoints_table ();
|
ui_out_table_body (uiout);
|
||||||
}
|
if (nr_printable_breakpoints > 0)
|
||||||
|
annotate_breakpoints_table ();
|
||||||
#else
|
#else
|
||||||
if (nr_printable_breakpoints > 0)
|
if (nr_printable_breakpoints > 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user