summaryrefslogtreecommitdiff
path: root/gdb/frame.h
diff options
context:
space:
mode:
authorPedro Alves <pedro@codesourcery.com>2009-01-24 19:17:24 +0000
committerPedro Alves <pedro@codesourcery.com>2009-01-24 19:17:24 +0000
commit2b33b569bdebeb623beabc36cc43c545701b6d93 (patch)
treeca5f0c36d071fa5e6e3c0fde2b2a0679a814a75c /gdb/frame.h
parentc68ed5493b7c919af1cb950b542f72d62bd08882 (diff)
downloadgdb-2b33b569bdebeb623beabc36cc43c545701b6d93.tar.gz
* infrun.c (normal_stop): Don't call
deprecated_update_frame_pc_hack. * frame.c (deprecated_update_frame_pc_hack) (deprecated_update_frame_base_hack): Delete, and ... (create_new_frame): ... inline here. * frame.h (deprecated_update_frame_pc_hack) (deprecated_update_frame_base_hack): Delete declarations.
Diffstat (limited to 'gdb/frame.h')
-rw-r--r--gdb/frame.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/gdb/frame.h b/gdb/frame.h
index 2e1ee536d18..b25ab9cc053 100644
--- a/gdb/frame.h
+++ b/gdb/frame.h
@@ -660,22 +660,4 @@ extern struct frame_info *deprecated_safe_get_selected_frame (void);
extern struct frame_info *create_new_frame (CORE_ADDR base, CORE_ADDR pc);
-/* FIXME: cagney/2002-12-06: Has the PC in the current frame changed?
- "infrun.c", Thanks to gdbarch_decr_pc_after_break, can change the PC after
- the initial frame create. This puts things back in sync.
-
- This replaced: frame->pc = ....; */
-extern void deprecated_update_frame_pc_hack (struct frame_info *frame,
- CORE_ADDR pc);
-
-/* FIXME: cagney/2002-12-18: Has the frame's base changed? Or to be
- more exact, was that initial guess at the frame's base as returned
- by the deleted read_fp() wrong? If it was, fix it. This shouldn't
- be necessary since the code should be getting the frame's base
- correct from the outset.
-
- This replaced: frame->frame = ....; */
-extern void deprecated_update_frame_base_hack (struct frame_info *frame,
- CORE_ADDR base);
-
#endif /* !defined (FRAME_H) */