diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-03-23 15:16:47 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-03-23 15:16:47 +0000 |
commit | 0ec747947115a207a720316a4267e0bbb02449c2 (patch) | |
tree | 40ad141f2e38dccafcab7fe9c26e31383835697f /gdb/arch-utils.c | |
parent | 78e3c18d4f09c34db039d9242cd383040fd585f6 (diff) | |
download | gdb-0ec747947115a207a720316a4267e0bbb02449c2.tar.gz |
2004-03-23 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): Deprecate.
* gdbarch.h, gdbarch.c: Re-generate.
* i386obsd-tdep.c (i386obsd_init_abi): Update.
* i386nbsd-tdep.c (i386nbsd_init_abi): Update.
* i386bsd-tdep.c (i386bsd_init_abi): Update.
* config/vax/tm-vaxbsd.h (DEPRECATED_SIGTRAMP_END)
(DEPRECATED_SIGTRAMP_START): Update.
* config/m68k/tm-nbsd.h (DEPRECATED_SIGTRAMP_END)
(DEPRECATED_SIGTRAMP_START): Update.
* blockframe.c (find_pc_sect_partial_function): Update.
* arch-utils.c (legacy_pc_in_sigtramp): Update.
Index: doc/ChangeLog
2004-03-23 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Deprecate
references to SIGTRAMP_START and SIGTRAMP_END.
Diffstat (limited to 'gdb/arch-utils.c')
-rw-r--r-- | gdb/arch-utils.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/arch-utils.c b/gdb/arch-utils.c index 1e4ce1d6ba7..d76a8e40a7f 100644 --- a/gdb/arch-utils.c +++ b/gdb/arch-utils.c @@ -299,8 +299,9 @@ int legacy_pc_in_sigtramp (CORE_ADDR pc, char *name) { #if !defined (DEPRECATED_IN_SIGTRAMP) - if (SIGTRAMP_START_P ()) - return (pc) >= SIGTRAMP_START (pc) && (pc) < SIGTRAMP_END (pc); + if (DEPRECATED_SIGTRAMP_START_P ()) + return ((pc) >= DEPRECATED_SIGTRAMP_START (pc) + && (pc) < DEPRECATED_SIGTRAMP_END (pc)); else return name && strcmp ("_sigtramp", name) == 0; #else |