diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-08-03 02:02:24 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-08-03 02:02:24 +0000 |
commit | 462fcd8b713a37c4cc29266d76b577ed6fe55031 (patch) | |
tree | beef432ac78cf0e3626b885d9ca4502daf54ce8d /gdb/irix5-nat.c | |
parent | a952cfacbaa895cbc660e8becb4ad98306c3ae4b (diff) | |
download | gdb-462fcd8b713a37c4cc29266d76b577ed6fe55031.tar.gz |
2004-08-02 Andrew Cagney <cagney@gnu.org>
* gdbarch.sh (deprecated_register_bytes): Delete.
* gdbarch.h, gdbarch.c: Re-generate.
* regcache.c (deprecated_register_bytes): New function.
* regcache.h (deprecated_register_bytes): Declare.
* xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
* v850-tdep.c (v850_gdbarch_init): Update.
* sh64-tdep.c (sh64_gdbarch_init): Update.
* ns32k-tdep.c (ns32k_gdbarch_init_32082): Update.
* mn10300-tdep.c (mn10300_gdbarch_init): Update.
* mcore-tdep.c (mcore_gdbarch_init): Update.
* cris-tdep.c (cris_gdbarch_init): Update.
* arm-tdep.c (arm_gdbarch_init): Update.
* remote.c (init_remote_state): Update.
* remote-vx.c (vx_prepare_to_store): Update.
* remote-sds.c (sds_fetch_registers, sds_prepare_to_store): Update.
* irix5-nat.c (fetch_core_registers): Update.
* cris-tdep.c (cris_register_bytes_ok): Update.
* config/nm-gnu.h (CHILD_PREPARE_TO_STORE): Update.
Diffstat (limited to 'gdb/irix5-nat.c')
-rw-r--r-- | gdb/irix5-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/irix5-nat.c b/gdb/irix5-nat.c index 129742fb6d8..5cf60555f04 100644 --- a/gdb/irix5-nat.c +++ b/gdb/irix5-nat.c @@ -210,7 +210,7 @@ static void fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, int which, CORE_ADDR reg_addr) { - if (core_reg_size == DEPRECATED_REGISTER_BYTES) + if (core_reg_size == deprecated_register_bytes ()) { memcpy ((char *) deprecated_registers, core_reg_sect, core_reg_size); } |