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 | a53c66de31b87c66e2fc17afb3558983a5d80bf9 (patch) | |
tree | 369522e7fe62c2d525f2f161d0fa52bb3cbe5e8f /gdb/mips-tdep.c | |
parent | 0b52efa6eba620689d3d023d5575afb0eb1ae492 (diff) | |
download | gdb-a53c66de31b87c66e2fc17afb3558983a5d80bf9.zip gdb-a53c66de31b87c66e2fc17afb3558983a5d80bf9.tar.gz gdb-a53c66de31b87c66e2fc17afb3558983a5d80bf9.tar.bz2 |
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/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index b797e39..c19977f 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -5260,8 +5260,9 @@ mips_in_return_stub (CORE_ADDR pc, char *name) } -/* Return non-zero if the PC is in a library helper function that should - be ignored. This implements the IGNORE_HELPER_CALL macro. */ +/* Return non-zero if the PC is in a library helper function that + should be ignored. This implements the + DEPRECATED_IGNORE_HELPER_CALL macro. */ int mips_ignore_helper (CORE_ADDR pc) @@ -5930,8 +5931,8 @@ mips_dump_tdep (struct gdbarch *current_gdbarch, struct ui_file *file) "mips_dump_tdep: FIRST_EMBED_REGNUM = %d\n", FIRST_EMBED_REGNUM); fprintf_unfiltered (file, - "mips_dump_tdep: IGNORE_HELPER_CALL # %s\n", - XSTRING (IGNORE_HELPER_CALL (PC))); + "mips_dump_tdep: DEPRECATED_IGNORE_HELPER_CALL # %s\n", + XSTRING (DEPRECATED_IGNORE_HELPER_CALL (PC))); fprintf_unfiltered (file, "mips_dump_tdep: IN_SOLIB_CALL_TRAMPOLINE # %s\n", XSTRING (IN_SOLIB_CALL_TRAMPOLINE (PC, NAME))); |