diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/mi/mi-interp.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f748f76..2707c51 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2011-11-22 Tom Tromey <tromey@redhat.com> + * mi/mi-interp.c (mi_on_normal_stop): Call bpstat_print. + +2011-11-22 Tom Tromey <tromey@redhat.com> + * mi/mi-common.c (_initialize_gdb_mi_common): Remove. Use static_assert to check the size of async_reason_string_lookup. diff --git a/gdb/mi/mi-interp.c b/gdb/mi/mi-interp.c index 805e3f8..2aec1c7 100644 --- a/gdb/mi/mi-interp.c +++ b/gdb/mi/mi-interp.c @@ -429,6 +429,7 @@ mi_on_normal_stop (struct bpstats *bs, int print_frame) struct ui_out *saved_uiout = current_uiout; current_uiout = mi_uiout; + bpstat_print (bs); print_stack_frame (get_selected_frame (NULL), 0, SRC_AND_LOC); current_uiout = saved_uiout; } |