diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-08-02 19:44:40 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-08-02 19:44:40 +0000 |
commit | 48c2c0a6f339c270820d46c8586f3779b1215fca (patch) | |
tree | 3df64638f3f2f611fd3f96c33612499867edda9e /gdb/gdbarch.h | |
parent | 474093a64e7274935acd9130ab7cc1a528a61a02 (diff) | |
download | gdb-48c2c0a6f339c270820d46c8586f3779b1215fca.zip gdb-48c2c0a6f339c270820d46c8586f3779b1215fca.tar.gz gdb-48c2c0a6f339c270820d46c8586f3779b1215fca.tar.bz2 |
2004-08-02 Andrew Cagney <cagney@gnu.org>
* gdbarch.sh (deprecated_frameless_function_invocation): Delete.
* gdbarch.h, gdbarch.c: Re-generate.
* arm-tdep.c (arm_frameless_function_invocation): Delete.
(arm_gdbarch_init) Do not set frameless function invocation.
* frame.h (legacy_frameless_look_for_prologue): Delete declaration.
* blockframe.c (legacy_frameless_look_for_prologue): Delete function.
* frv-tdep.c (frv_frameless_function_invocation): Delete.
(frv_gdbarch_init): Do not set frameless function invocation.
* sh64-tdep.c (sh64_gdbarch_init): Ditto.
* sh-tdep.c (sh_gdbarch_init): Ditto.
* m32r-tdep.c (m32r_gdbarch_init): Ditto.
* h8300-tdep.c (h8300_gdbarch_init): Ditto.
* avr-tdep.c (avr_gdbarch_init): Ditto.
Diffstat (limited to 'gdb/gdbarch.h')
-rw-r--r-- | gdb/gdbarch.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index c87886c..afddb7a 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -1347,35 +1347,6 @@ extern void set_gdbarch_frame_args_skip (struct gdbarch *gdbarch, CORE_ADDR fram #define FRAME_ARGS_SKIP (gdbarch_frame_args_skip (current_gdbarch)) #endif -/* DEPRECATED_FRAMELESS_FUNCTION_INVOCATION is not needed. The new - frame code works regardless of the type of frame - frameless, - stackless, or normal. */ - -#if defined (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION) -/* Legacy for systems yet to multi-arch DEPRECATED_FRAMELESS_FUNCTION_INVOCATION */ -#if !defined (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION_P) -#define DEPRECATED_FRAMELESS_FUNCTION_INVOCATION_P() (1) -#endif -#endif - -extern int gdbarch_deprecated_frameless_function_invocation_p (struct gdbarch *gdbarch); -#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) && defined (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION_P) -#error "Non multi-arch definition of DEPRECATED_FRAMELESS_FUNCTION_INVOCATION" -#endif -#if !defined (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION_P) -#define DEPRECATED_FRAMELESS_FUNCTION_INVOCATION_P() (gdbarch_deprecated_frameless_function_invocation_p (current_gdbarch)) -#endif - -typedef int (gdbarch_deprecated_frameless_function_invocation_ftype) (struct frame_info *fi); -extern int gdbarch_deprecated_frameless_function_invocation (struct gdbarch *gdbarch, struct frame_info *fi); -extern void set_gdbarch_deprecated_frameless_function_invocation (struct gdbarch *gdbarch, gdbarch_deprecated_frameless_function_invocation_ftype *deprecated_frameless_function_invocation); -#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) && defined (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION) -#error "Non multi-arch definition of DEPRECATED_FRAMELESS_FUNCTION_INVOCATION" -#endif -#if !defined (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION) -#define DEPRECATED_FRAMELESS_FUNCTION_INVOCATION(fi) (gdbarch_deprecated_frameless_function_invocation (current_gdbarch, fi)) -#endif - #if defined (DEPRECATED_FRAME_CHAIN) /* Legacy for systems yet to multi-arch DEPRECATED_FRAME_CHAIN */ #if !defined (DEPRECATED_FRAME_CHAIN_P) |