diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-12-06 19:26:06 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-12-06 19:26:06 +0000 |
commit | 2ca6c561875beb2a062b218f81ebf30e2dd7ec9c (patch) | |
tree | a385f9ec1b8ccdb0cd0c7422b6da2f30a4daafde /gdb/mips-tdep.c | |
parent | de46ecd713c0b4dbf5ef7a26b293aa6b11cf3635 (diff) | |
download | gdb-2ca6c561875beb2a062b218f81ebf30e2dd7ec9c.zip gdb-2ca6c561875beb2a062b218f81ebf30e2dd7ec9c.tar.gz gdb-2ca6c561875beb2a062b218f81ebf30e2dd7ec9c.tar.bz2 |
2002-12-06 Andrew Cagney <ac131313@redhat.com>
* gdbarch.sh (DEPRECATED_INIT_FRAME_PC_FIRST): Rename
INIT_FRAME_PC_FIRST. Change to a function with predicate. Do not
provide a default value.
* gdbarch.h, gdbarch.c: Regenerate.
* frame.c (get_prev_frame): Update. Check
DEPRECATED_INIT_FRAME_PC_FIRST_P.
* s390-tdep.c (s390_gdbarch_init): Update.
* mips-tdep.c (mips_gdbarch_init): Update.
* config/sparc/tm-sparc.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
* config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
* alpha-tdep.c (alpha_gdbarch_init): Update.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index c29c7a0..65216bd 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -5964,8 +5964,8 @@ mips_gdbarch_init (struct gdbarch_info info, set_gdbarch_addr_bits_remove (gdbarch, mips_addr_bits_remove); /* There's a mess in stack frame creation. See comments in - blockframe.c near reference to INIT_FRAME_PC_FIRST. */ - set_gdbarch_init_frame_pc_first (gdbarch, mips_init_frame_pc_first); + blockframe.c near reference to DEPRECATED_INIT_FRAME_PC_FIRST. */ + set_gdbarch_deprecated_init_frame_pc_first (gdbarch, mips_init_frame_pc_first); set_gdbarch_init_frame_pc (gdbarch, init_frame_pc_noop); /* Map debug register numbers onto internal register numbers. */ |