diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-06-13 13:49:53 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-06-13 13:49:53 +0000 |
commit | 15ac804d2f0b001dfcdf6113735ce8911ca1aab9 (patch) | |
tree | c53e7aedd78d09eaa1fd38fab00a0ad9f359184a /gdb/cris-tdep.c | |
parent | 97092415597fbfb41f2c028e95b895966d52996f (diff) | |
download | gdb-15ac804d2f0b001dfcdf6113735ce8911ca1aab9.zip gdb-15ac804d2f0b001dfcdf6113735ce8911ca1aab9.tar.gz gdb-15ac804d2f0b001dfcdf6113735ce8911ca1aab9.tar.bz2 |
2004-06-13 Andrew Cagney <cagney@gnu.org>
* gdbarch.sh (DEPRECATED_MAX_REGISTER_RAW_SIZE)
(DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Delete.
* gdbarch.h, gdbarch.c: Regenerate.
* ns32k-tdep.h (NS32K_MAX_REGISTER_RAW_SIZE)
(NS32K_MAX_REGISTER_VIRTUAL_SIZE): Delete macros.
* xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
deprecated_max_register_raw_size and
deprecated_max_register_virtual_size.
* v850-tdep.c (v850_gdbarch_init): Ditto.
* ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
* mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
* mcore-tdep.c (mcore_gdbarch_init): Ditto.
* cris-tdep.c (cris_gdbarch_init): Ditto.
Diffstat (limited to 'gdb/cris-tdep.c')
-rw-r--r-- | gdb/cris-tdep.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/cris-tdep.c b/gdb/cris-tdep.c index 4708f54..85cc947 100644 --- a/gdb/cris-tdep.c +++ b/gdb/cris-tdep.c @@ -3857,15 +3857,9 @@ cris_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) /* The length of the registers in the actual machine representation. */ set_gdbarch_deprecated_register_raw_size (gdbarch, cris_register_size); - /* The largest value DEPRECATED_REGISTER_RAW_SIZE can have. */ - set_gdbarch_deprecated_max_register_raw_size (gdbarch, 32); - /* The length of the registers in the program's representation. */ set_gdbarch_deprecated_register_virtual_size (gdbarch, cris_register_size); - /* The largest value DEPRECATED_REGISTER_VIRTUAL_SIZE can have. */ - set_gdbarch_deprecated_max_register_virtual_size (gdbarch, 32); - set_gdbarch_deprecated_register_virtual_type (gdbarch, cris_register_virtual_type); /* Dummy frame functions. */ |