diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-09-05 11:46:12 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2008-09-05 11:46:12 +0000 |
commit | bb48619059cec6b2fc701e339dc89c77ff3e0095 (patch) | |
tree | 9f0f7c4e99eea28280d2a552dcf3ea218a7e1d49 /gdb/mips-tdep.c | |
parent | 9dacea90b2a61b4a84d3379ec523e82b5c18f184 (diff) | |
download | gdb-bb48619059cec6b2fc701e339dc89c77ff3e0095.zip gdb-bb48619059cec6b2fc701e339dc89c77ff3e0095.tar.gz gdb-bb48619059cec6b2fc701e339dc89c77ff3e0095.tar.bz2 |
* mips-tdep.c (deprecated_mips_set_processor_regs_hack): Use
regcache architecture instead of current_gdbarch.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 14e21fb..615938b 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -4885,11 +4885,12 @@ set_mipsfpu_auto_command (char *args, int from_tty) void deprecated_mips_set_processor_regs_hack (void) { - struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch); + struct regcache *regcache = get_current_regcache (); + struct gdbarch *gdbarch = get_regcache_arch (regcache); + struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); ULONGEST prid; - regcache_cooked_read_unsigned (get_current_regcache (), - MIPS_PRID_REGNUM, &prid); + regcache_cooked_read_unsigned (regcache, MIPS_PRID_REGNUM, &prid); if ((prid & ~0xf) == 0x700) tdep->mips_processor_reg_names = mips_r3041_reg_names; } |