* stack.c (print_frame_info): Restore call to annotate_frame_begin
authorMark Kettenis <kettenis@gnu.org>
Sun, 2 Feb 2003 18:30:56 +0000 (18:30 +0000)
committerMark Kettenis <kettenis@gnu.org>
Sun, 2 Feb 2003 18:30:56 +0000 (18:30 +0000)
lost in the previous patch.

gdb/ChangeLog
gdb/stack.c

index 9388cf23722f3952a9146a3afea0590714a28e21..30fdf7e4ad1d8df4419d28bbcc1cc2da07ce5706 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-02  Mark Kettenis  <kettenis@gnu.org>
+
+       * stack.c (print_frame_info): Restore call to annotate_frame_begin
+       lost in the previous patch.
+
 2003-02-01  Andrew Cagney  <ac131313@redhat.com>
 
        From 2002-11-09 Jason Molenda (jason-cl@molenda.com)
index e167b6e6073e6b4f60062e2b46ccdde0de22f885..6b242b2ab8acb1169bcc2421f4a93810c5baae59 100644 (file)
@@ -203,6 +203,8 @@ print_frame_info (struct frame_info *fi, int level, int source, int args)
       struct cleanup *uiout_cleanup
        = make_cleanup_ui_out_tuple_begin_end (uiout, "frame");
 
+      annotate_frame_begin (level == -1 ? 0 : level, get_frame_pc (fi));
+
       /* Do this regardless of SOURCE because we don't have any source
          to list for this frame.  */
       if (level >= 0)
@@ -216,7 +218,7 @@ print_frame_info (struct frame_info *fi, int level, int source, int args)
           ui_out_field_core_addr (uiout, "addr", fi->pc);
           annotate_frame_address_end ();
         }
-      
+
       if (get_frame_type (fi) == DUMMY_FRAME)
         {
           annotate_function_call ();