summaryrefslogtreecommitdiff
path: root/gdb/arm-tdep.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-06-09 20:08:56 +0000
committerAndrew Cagney <cagney@redhat.com>2003-06-09 20:08:56 +0000
commit7290850d29488d89b71f2108133db2ed518e3d9e (patch)
treeed87a9c735b0364080c11539ce396e026be3debb /gdb/arm-tdep.c
parent9a8d140b1983adbf8efeba65a0c9fe0bc750a325 (diff)
downloadgdb-7290850d29488d89b71f2108133db2ed518e3d9e.tar.gz
2003-06-09 Andrew Cagney <cagney@redhat.com>
* vax-tdep.c (vax_frame_locals_address): Delete function. (vax_gdbarch_init): Do not set frame_locals_address. * m68hc11-tdep.c (m68hc11_frame_locals_address): Delete function. (m68hc11_gdbarch_init): Do not set frame_locals_address. * s390-tdep.c (s390_frame_args_address): Delete function. (s390_gdbarch_init): Do not set frame_args_address or frame_locals_address. * ns32k-tdep.c (ns32k_frame_locals_address): Delete. (ns32k_gdbarch_init): Do not set frame_locals_address. * hppa-tdep.c (hppa_frame_args_address): Delete function. (hppa_frame_locals_address): Delete function. (hppa_gdbarch_init): Do not set frame_args_address, or frame_locals_address. * arm-tdep.c (arm_frame_args_address): Delete. (arm_frame_locals_address): Delete. (arm_gdbarch_init): Do not set frame_args_address, or frame_locals_address.
Diffstat (limited to 'gdb/arm-tdep.c')
-rw-r--r--gdb/arm-tdep.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c
index 045496ce117..f1384e0bc0c 100644
--- a/gdb/arm-tdep.c
+++ b/gdb/arm-tdep.c
@@ -306,20 +306,6 @@ arm_frameless_function_invocation (struct frame_info *fi)
return frameless;
}
-/* The address of the arguments in the frame. */
-static CORE_ADDR
-arm_frame_args_address (struct frame_info *fi)
-{
- return get_frame_base (fi);
-}
-
-/* The address of the local variables in the frame. */
-static CORE_ADDR
-arm_frame_locals_address (struct frame_info *fi)
-{
- return get_frame_base (fi);
-}
-
/* A typical Thumb prologue looks like this:
push {r7, lr}
add sp, sp, #-28
@@ -2936,8 +2922,6 @@ arm_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
set_gdbarch_frameless_function_invocation
(gdbarch, arm_frameless_function_invocation);
set_gdbarch_deprecated_frame_saved_pc (gdbarch, arm_frame_saved_pc);
- set_gdbarch_frame_args_address (gdbarch, arm_frame_args_address);
- set_gdbarch_frame_locals_address (gdbarch, arm_frame_locals_address);
set_gdbarch_frame_args_skip (gdbarch, 0);
set_gdbarch_deprecated_frame_init_saved_regs (gdbarch, arm_frame_init_saved_regs);
set_gdbarch_deprecated_pop_frame (gdbarch, arm_pop_frame);