diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-11-14 01:11:07 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-11-14 01:11:07 +0000 |
commit | 8f1f98c019b66cef01a66cebc12caeda2fe8d657 (patch) | |
tree | dcbc06db8cda59d0cbb0892bcb461cec07f9c627 /gdb/regcache.h | |
parent | 785fe66761a27b79c75a0ddbdb8336ca19539e3e (diff) | |
download | gdb-8f1f98c019b66cef01a66cebc12caeda2fe8d657.tar.gz |
2004-11-13 Andrew Cagney <cagney@gnu.org>
* regcache.h (deprecated_register_valid): Delete.
(deprecated_registers): Delete.
* regcache.c (deprecated_register_valid): Delete.
(deprecated_registers): Delete.
(deprecated_read_register_byte, _initialize_regcache)
(deprecated_write_register_bytes, build_regcache): Update.
* config/powerpc/ppc-sim.mt (TDEPFILES): Remove ppc-bdm.o and
remote-sds.o.
* config/powerpc/ppc-eabi.mt (TDEPFILES): Ditto.
* config/mips/embed.mt (TDEPFILES): Remove remote-mips.o.
Diffstat (limited to 'gdb/regcache.h')
-rw-r--r-- | gdb/regcache.h | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/gdb/regcache.h b/gdb/regcache.h index ed9c9907fde..e7962223df1 100644 --- a/gdb/regcache.h +++ b/gdb/regcache.h @@ -181,28 +181,7 @@ extern void deprecated_read_register_bytes (int regbyte, char *myaddr, extern void deprecated_write_register_bytes (int regbyte, char *myaddr, int len); -/* Character array containing the current state of each register - (unavailable<0, invalid=0, valid>0) for the most recently - referenced thread. This global is often found in close proximity - to code that is directly manipulating the deprecated_registers[] - array. In such cases, it should be possible to replace the lot - with a call to regcache_raw_supply(). If you find yourself in dire - straits, still needing access to the cache status bit, the - regcache_valid_p() and set_register_cached() functions are - available. */ -extern signed char *deprecated_register_valid; - -/* Character array containing an image of the inferior programs' - registers for the most recently referenced thread. - - NOTE: cagney/2002-11-14: Target side code should be using - regcache_raw_supply() and/or regcache_collect() while architecture - side code should use the more generic regcache methods. */ - -extern char *deprecated_registers; - -/* NOTE: cagney/2002-11-05: This function, and its co-conspirator - deprecated_registers[], have been superseeded by +/* NOTE: cagney/2002-11-05: This function has been superseeded by regcache_raw_supply(). */ extern void deprecated_registers_fetched (void); |