diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-04-30 20:52:17 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-04-30 20:52:17 +0000 |
commit | 7b7adad08dcd80b101a1a68a9fc59fb287db49b9 (patch) | |
tree | 67075f41fd18f0d5c451983d3a4570ea088e9266 /gdb/config | |
parent | 2f72f85088251ea8b84c05cec60e1674d86917b9 (diff) | |
download | gdb-7b7adad08dcd80b101a1a68a9fc59fb287db49b9.zip gdb-7b7adad08dcd80b101a1a68a9fc59fb287db49b9.tar.gz gdb-7b7adad08dcd80b101a1a68a9fc59fb287db49b9.tar.bz2 |
2004-04-30 Andrew Cagney <cagney@redhat.com>
* config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Delete.
* config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Delete.
* config/mips/tm-nbsd.h: Delete undef DEPRECATED_IN_SIGTRAMP.
* config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Delete.
* config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Delete.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/arm/tm-embed.h | 3 | ||||
-rw-r--r-- | gdb/config/mips/tm-irix5.h | 4 | ||||
-rw-r--r-- | gdb/config/mips/tm-irix6.h | 4 | ||||
-rw-r--r-- | gdb/config/mips/tm-linux.h | 5 | ||||
-rw-r--r-- | gdb/config/mips/tm-nbsd.h | 3 |
5 files changed, 0 insertions, 19 deletions
diff --git a/gdb/config/arm/tm-embed.h b/gdb/config/arm/tm-embed.h index 7ad6b68..6a8c87a 100644 --- a/gdb/config/arm/tm-embed.h +++ b/gdb/config/arm/tm-embed.h @@ -46,7 +46,4 @@ extern int arm_in_call_stub (CORE_ADDR pc, char *name); extern CORE_ADDR arm_skip_stub (CORE_ADDR pc); -#undef DEPRECATED_IN_SIGTRAMP -#define DEPRECATED_IN_SIGTRAMP(pc, name) 0 - #endif /* TM_ARMEMBED_H */ diff --git a/gdb/config/mips/tm-irix5.h b/gdb/config/mips/tm-irix5.h index ff40d66..5e90580 100644 --- a/gdb/config/mips/tm-irix5.h +++ b/gdb/config/mips/tm-irix5.h @@ -29,10 +29,6 @@ #define SIGFRAME_REGSAVE_OFF (SIGFRAME_BASE + 3 * 4) #define SIGFRAME_FPREGSAVE_OFF (SIGFRAME_BASE + 3 * 4 + 32 * 4 + 4) -/* The signal handler trampoline is called _sigtramp. */ -#undef DEPRECATED_IN_SIGTRAMP -#define DEPRECATED_IN_SIGTRAMP(pc, name) ((name) && DEPRECATED_STREQ ("_sigtramp", name)) - /* Irix 5 saves a full 64 bits for each register. We skip 2 * 4 to get to the saved PC (the register mask and status register are both 32 bits) and then another 4 to get to the lower 32 bits. We skip diff --git a/gdb/config/mips/tm-irix6.h b/gdb/config/mips/tm-irix6.h index 88abf80..8b61f0e 100644 --- a/gdb/config/mips/tm-irix6.h +++ b/gdb/config/mips/tm-irix6.h @@ -22,10 +22,6 @@ #include "mips/tm-mips.h" #include "solib.h" -/* The signal handler trampoline is called _sigtramp. */ -#undef DEPRECATED_IN_SIGTRAMP -#define DEPRECATED_IN_SIGTRAMP(pc, name) ((name) && DEPRECATED_STREQ ("_sigtramp", name)) - /* Offsets for register values in _sigtramp frame. sigcontext is immediately above the _sigtramp frame on Irix. */ #undef SIGFRAME_BASE diff --git a/gdb/config/mips/tm-linux.h b/gdb/config/mips/tm-linux.h index 4227cd3..7b10e4e 100644 --- a/gdb/config/mips/tm-linux.h +++ b/gdb/config/mips/tm-linux.h @@ -44,11 +44,6 @@ #define SOFTWARE_SINGLE_STEP_P() 1 #define SOFTWARE_SINGLE_STEP(sig,bp_p) mips_software_single_step (sig, bp_p) -/* FIXME: This still needs to be implemented. */ - -#undef DEPRECATED_IN_SIGTRAMP -#define DEPRECATED_IN_SIGTRAMP(pc, name) (0) - #undef IN_SOLIB_DYNSYM_RESOLVE_CODE #define IN_SOLIB_DYNSYM_RESOLVE_CODE(PC) mips_linux_in_dynsym_resolve_code (PC) int mips_linux_in_dynsym_resolve_code (CORE_ADDR pc); diff --git a/gdb/config/mips/tm-nbsd.h b/gdb/config/mips/tm-nbsd.h index eb8e292..c7e45fc 100644 --- a/gdb/config/mips/tm-nbsd.h +++ b/gdb/config/mips/tm-nbsd.h @@ -31,7 +31,4 @@ #undef SKIP_TRAMPOLINE_CODE #undef IGNORE_HELPER_CALL -/* XXX undef a bunch of stuff we want to use multi-arch */ -#undef DEPRECATED_IN_SIGTRAMP - #endif /* TM_NBSD_H */ |