diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-07-21 14:23:37 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-07-21 14:23:37 +0000 |
commit | ea75a98523dfdae68f5424c68c1ff0b8be226aef (patch) | |
tree | b61a177f76ba35904cc1a13f54faa0450c073e26 /gdb/config | |
parent | a7aa65000c6e0ef5f691f67f75da564ebe5fc2ff (diff) | |
download | gdb-ea75a98523dfdae68f5424c68c1ff0b8be226aef.tar.gz |
2004-07-21 Andrew Cagney <cagney@gnu.org>
* config/mips/tm-mips.h (DEPRECATED_IGNORE_HELPER_CALL): Deprecate.
* mips-tdep.c (mips_dump_tdep, mips_ignore_helper): Update.
* infrun.c (DEPRECATED_IGNORE_HELPER_CALL): Delete macro.
(handle_inferior_event): Wrap call to deprecated
IGNORE_HELPER_CALL in #ifdef.
* config/mips/tm-nbsd.h: Update.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/mips/tm-mips.h | 2 | ||||
-rw-r--r-- | gdb/config/mips/tm-nbsd.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gdb/config/mips/tm-mips.h b/gdb/config/mips/tm-mips.h index 018877c2e03..9c1e832dbbd 100644 --- a/gdb/config/mips/tm-mips.h +++ b/gdb/config/mips/tm-mips.h @@ -99,7 +99,7 @@ typedef struct mips_extra_func_info extern struct frame_info *setup_arbitrary_frame (int, CORE_ADDR *); /* Functions for dealing with MIPS16 call and return stubs. */ -#define IGNORE_HELPER_CALL(pc) mips_ignore_helper (pc) +#define DEPRECATED_IGNORE_HELPER_CALL(pc) mips_ignore_helper (pc) extern int mips_ignore_helper (CORE_ADDR pc); /* Definitions and declarations used by mips-tdep.c and remote-mips.c */ diff --git a/gdb/config/mips/tm-nbsd.h b/gdb/config/mips/tm-nbsd.h index c7e45fcff0e..209e28e6116 100644 --- a/gdb/config/mips/tm-nbsd.h +++ b/gdb/config/mips/tm-nbsd.h @@ -29,6 +29,6 @@ #undef IN_SOLIB_CALL_TRAMPOLINE #undef IN_SOLIB_RETURN_TRAMPOLINE #undef SKIP_TRAMPOLINE_CODE -#undef IGNORE_HELPER_CALL +#undef DEPRECATED_IGNORE_HELPER_CALL #endif /* TM_NBSD_H */ |