2003-04-05 Andrew Cagney <cagney@redhat.com>

* stack.c (print_frame_info): Use get_frame_pc.
This commit is contained in:
Andrew Cagney 2003-04-05 15:19:12 +00:00
parent f1f02ee4e4
commit 6fba50029c
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2003-04-05 Andrew Cagney <cagney@redhat.com>
* stack.c (print_frame_info): Use get_frame_pc.
2003-04-04 Andrew Cagney <cagney@redhat.com>
* frame.c (get_prev_frame): Do not call frame_type_from_pc. Set

View file

@ -216,7 +216,7 @@ print_frame_info (struct frame_info *fi, int level, int source, int args)
if (ui_out_is_mi_like_p (uiout))
{
annotate_frame_address ();
ui_out_field_core_addr (uiout, "addr", fi->pc);
ui_out_field_core_addr (uiout, "addr", get_frame_pc (fi));
annotate_frame_address_end ();
}