diff options
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 90c8503..e8c9c73 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -3657,6 +3657,11 @@ breakpoint_1 (int bnum, int allflag) print_one_breakpoint (b, &last_addr); } + +#ifdef UI_OUT + ui_out_table_end (uiout); +#endif /* UI_OUT */ + if (nr_printable_breakpoints == 0) { #ifdef UI_OUT @@ -3680,9 +3685,6 @@ breakpoint_1 (int bnum, int allflag) set_next_address (last_addr); } -#ifdef UI_OUT - ui_out_table_end (uiout); -#endif /* UI_OUT */ /* FIXME? Should this be moved up so that it is only called when there have been breakpoints? */ annotate_breakpoints_table_end (); |