diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-11-24 19:48:13 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-11-24 19:48:13 +0000 |
commit | 7c1f2cfeceafc8d2879f0f8297e2fa1bf3d2d9cd (patch) | |
tree | 4b432574949f104c78344ef8c9c8b923c284bf0f /gdb/stack.c | |
parent | 461f81195c0cd8dee6d150c29e0c1f6eaeb9eeee (diff) | |
download | gdb-7c1f2cfeceafc8d2879f0f8297e2fa1bf3d2d9cd.tar.gz |
2002-11-19 Andrew Cagney <ac131313@redhat.com>
* frame.h (FRAME_FP): Delete macro.
(get_frame_base): New function declaration.
* frame.c (get_frame_base): New function.
(get_frame_id): Use ->frame.
(frame_find_by_id): Rewrite to use get_frame_id.
* blockframe.c: Use get_frame_base instead of FRAME_FP.
* cris-tdep.c, d10v-tdep.c, findvar.c, h8500-tdep.c: Ditto.
* hppa-tdep.c, i386-tdep.c, infcmd.c, infrun.c: Ditto.
* m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c, mips-tdep.c: Ditto.
* mn10200-tdep.c, mn10300-tdep.c, rs6000-tdep.c: Ditto.
* sh-tdep.c, sparc-tdep.c, stack.c, tracepoint.c: Ditto.
* v850-tdep.c, valops.c, z8k-tdep.c: Ditto.
Diffstat (limited to 'gdb/stack.c')
-rw-r--r-- | gdb/stack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/stack.c b/gdb/stack.c index a3731260220..969f5420fcd 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -1737,7 +1737,7 @@ return_command (char *retval_exp, int from_tty) if (selected_frame == NULL) error ("No selected frame."); thisfun = get_frame_function (selected_frame); - selected_frame_addr = FRAME_FP (selected_frame); + selected_frame_addr = get_frame_base (selected_frame); selected_frame_pc = selected_frame->pc; /* Compute the return value (if any -- possibly getting errors here). */ @@ -1799,7 +1799,7 @@ return_command (char *retval_exp, int from_tty) /* If we are at the end of a call dummy now, pop the dummy frame too. */ if (CALL_DUMMY_HAS_COMPLETED (read_pc(), read_sp (), - FRAME_FP (get_current_frame ()))) + get_frame_base (get_current_frame ()))) POP_FRAME; /* If interactive, print the frame that is now current. */ |