diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-04-10 03:30:36 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-04-10 03:30:36 +0000 |
commit | d0a557723ac537e04c5be236aada4b6db0bf6ab5 (patch) | |
tree | 08da8ccc4812ba87ae542ff94eff53042a0b4e1a /gdb/breakpoint.c | |
parent | ac16bf075e8f8b82746c2daa5063fec3133e374b (diff) | |
download | gdb-d0a557723ac537e04c5be236aada4b6db0bf6ab5.zip gdb-d0a557723ac537e04c5be236aada4b6db0bf6ab5.tar.gz gdb-d0a557723ac537e04c5be236aada4b6db0bf6ab5.tar.bz2 |
2003-04-09 Andrew Cagney <cagney@redhat.com>
* frame.h (struct frame_id): Replace "pc" and "base" with
"stack_addr" and "code_addr". Update comments.
(frame_id_build): Update parameter names and comment.
(struct frame_info): Replace "id_p" and "id" with "this_id".
* dummy-frame.c (dummy_frame_this_id): Update.
* breakpoint.c (print_one_breakpoint): Update.
* frame.c (get_frame_id): Update.
(get_frame_base, frame_id_build): Update.
(create_sentinel_frame, legacy_get_prev_frame): Update.
(deprecated_update_frame_base_hack): Update.
(frame_id_p, frame_id_eq): Rework, return 0 when an invalid ID.
(frame_id_inner): Ditto.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index b349457..8ab9e54 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -3418,7 +3418,7 @@ print_one_breakpoint (struct breakpoint *b, ui_out_text (uiout, "\tstop only in stack frame at "); /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside the frame ID. */ - ui_out_field_core_addr (uiout, "frame", b->frame_id.base); + ui_out_field_core_addr (uiout, "frame", b->frame_id.stack_addr); ui_out_text (uiout, "\n"); } |