diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-09-30 13:29:44 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-09-30 13:29:44 +0000 |
commit | 2e0926257dd7f472121aa9d48341d94e5b08c403 (patch) | |
tree | 67dfe2e9b150659816b1726f0c904e68f76665d4 /gdb/regcache.c | |
parent | 4deab7378b2e02751de8e835f30b2233685afefd (diff) | |
download | gdb-2e0926257dd7f472121aa9d48341d94e5b08c403.zip gdb-2e0926257dd7f472121aa9d48341d94e5b08c403.tar.gz gdb-2e0926257dd7f472121aa9d48341d94e5b08c403.tar.bz2 |
2003-09-29 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_REGISTER_VIRTUAL_TYPE): Rename
DEPRECATED_REGISTER_VIRTUAL_TYPE.
* gdbarch.h, gdbarch.c: Regenerate.
* arch-utils.c, hppa-tdep.c, regcache.c, regcache.h: Update.
* sh64-tdep.c, sparc-tdep.c: Update.
2003-09-30 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Rename
REGISTER_VIRTUAL_TYPE to DEPRECATED_REGISTER_VIRTUAL_TYPE.
Diffstat (limited to 'gdb/regcache.c')
-rw-r--r-- | gdb/regcache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/regcache.c b/gdb/regcache.c index 7fc35ad..42280ff 100644 --- a/gdb/regcache.c +++ b/gdb/regcache.c @@ -167,11 +167,11 @@ init_regcache_descr (struct gdbarch *gdbarch) { if (gdbarch_register_type_p (gdbarch)) { - gdb_assert (!REGISTER_VIRTUAL_TYPE_P ()); /* OK */ + gdb_assert (!DEPRECATED_REGISTER_VIRTUAL_TYPE_P ()); /* OK */ descr->register_type[i] = gdbarch_register_type (gdbarch, i); } else - descr->register_type[i] = REGISTER_VIRTUAL_TYPE (i); /* OK */ + descr->register_type[i] = DEPRECATED_REGISTER_VIRTUAL_TYPE (i); /* OK */ } /* Construct a strictly RAW register cache. Don't allow pseudo's |