aboutsummaryrefslogtreecommitdiff
path: root/gdb/frame.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-12-18 18:03:42 +0000
committerAndrew Cagney <cagney@redhat.com>2002-12-18 18:03:42 +0000
commit2f1071075bfd131063329519e606af5571c412e7 (patch)
tree194f26bf71bbb1ba78d88c57287607cbf7643cf6 /gdb/frame.c
parent0bc4911d08debd15b1a0fda7dd4cdf89ce6e0b2a (diff)
downloadgdb-2f1071075bfd131063329519e606af5571c412e7.zip
gdb-2f1071075bfd131063329519e606af5571c412e7.tar.gz
gdb-2f1071075bfd131063329519e606af5571c412e7.tar.bz2
2002-12-18 Andrew Cagney <ac131313@redhat.com>
* frame.c (deprecated_update_current_frame_pc_hack): Replace deprecated_update_current_frame_pc_hack. (deprecated_update_frame_base_hack): New function. * frame.h (deprecated_update_frame_pc_hack): Replace (deprecated_update_frame_base_hack): Declare. * infrun.c (normal_stop): Update.
Diffstat (limited to 'gdb/frame.c')
-rw-r--r--gdb/frame.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/gdb/frame.c b/gdb/frame.c
index 17ee832..ecdf408 100644
--- a/gdb/frame.c
+++ b/gdb/frame.c
@@ -1297,14 +1297,17 @@ frame_extra_info_zalloc (struct frame_info *fi, long size)
}
void
-deprecated_update_current_frame_pc_hack (CORE_ADDR pc)
+deprecated_update_frame_pc_hack (struct frame_info *frame, CORE_ADDR pc)
{
- /* FIXME: cagney/2002-12-06: Has the PC in the current frame
- changed? "infrun.c", Thanks to DECR_PC_AFTER_BREAK, can change
- the PC after the initial frame create. This puts things back in
- sync. */
- if (current_frame != NULL)
- current_frame->pc = pc;
+ /* See comment in "frame.h". */
+ frame->pc = pc;
+}
+
+void
+deprecated_update_frame_base_hack (struct frame_info *frame, CORE_ADDR base)
+{
+ /* See comment in "frame.h". */
+ frame->frame = base;
}
void