* mips-tdep.c (deprecated_mips_set_processor_regs_hack): Use

regcache architecture instead of current_gdbarch.
This commit is contained in:
Ulrich Weigand 2008-09-05 11:46:12 +00:00
parent 9dacea90b2
commit bb48619059
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2008-09-05 Ulrich Weigand <uweigand@de.ibm.com>
* mips-tdep.c (deprecated_mips_set_processor_regs_hack): Use
regcache architecture instead of current_gdbarch.
2008-09-05 Ulrich Weigand <uweigand@de.ibm.com>
* mep-tdep.c (struct mep_prologue): Add gdbarch member.

View File

@ -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;
}