diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-05-08 22:33:14 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-05-08 22:33:14 +0000 |
commit | 123a958e016784942d494e94a55827db9c11fd9a (patch) | |
tree | 3602d47a73423eacac376227d4361d05907dd85b /gdb/regcache.h | |
parent | eb294659eb81c6e37c4efb5a3f9d6c3f94857b2e (diff) | |
download | gdb-123a958e016784942d494e94a55827db9c11fd9a.zip gdb-123a958e016784942d494e94a55827db9c11fd9a.tar.gz gdb-123a958e016784942d494e94a55827db9c11fd9a.tar.bz2 |
2003-05-08 Andrew Cagney <cagney@redhat.com>
* regcache.h (max_register_size): Delete declaration.
* regcache.c (max_register_size): Delete function.
(struct regcache_descr): Delete field "max_register_size".
(init_regcache_descr, init_legacy_regcache_descr): Assert that all
registers fit in MAX_REGISTER_SIZE.
(regcache_save): Replace max_register_size with MAX_REGISTER_SIZE.
(regcache_restore, regcache_xfer_part, regcache_dump): Ditto.
* thread-db.c: Replace max_register_size with MAX_REGISTER_SIZE.
* sh-tdep.c, rom68k-rom.c, remote-sim.c, remote-mips.c: Ditto.
* remote-e7000.c, monitor.c, mipsv4-nat.c, mips-nat.c: Ditto.
* m68klinux-nat.c, lynx-nat.c, irix4-nat.c: Ditto.
* hpux-thread.c, hppah-nat.c, hppab-nat.c, hppa-tdep.c: Ditto.
* dve3900-rom.c, hppa-tdep.c: Ditto.
Diffstat (limited to 'gdb/regcache.h')
-rw-r--r-- | gdb/regcache.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/regcache.h b/gdb/regcache.h index 2368cf0..5d77095 100644 --- a/gdb/regcache.h +++ b/gdb/regcache.h @@ -127,12 +127,6 @@ extern int register_offset_hack (struct gdbarch *gdbarch, int regnum); extern struct type *register_type (struct gdbarch *gdbarch, int regnum); -/* Return the size of the largest register. Used when allocating - space for an aribtrary register value. */ - -extern int max_register_size (struct gdbarch *gdbarch); - - /* Return the size of register REGNUM. All registers should have only one size. |