Remove regcache_raw_supply
Remove regcache_raw_supply, update callers to use detached_regcache::raw_supply. gdb/ChangeLog: * regcache.h (regcache_raw_supply): Remove, update callers to use detached_regcache::raw_supply. * regcache.c (regcache_raw_supply): Remove.
This commit is contained in:
parent
e4c4a59b48
commit
73e1c03f93
88 changed files with 580 additions and 658 deletions
|
@ -101,11 +101,11 @@ supply_gregset (struct regcache *regcache, const elf_gregset_t * gregsetp)
|
|||
}
|
||||
|
||||
if (i != M32R_SP_REGNUM)
|
||||
regcache_raw_supply (regcache, i, ®val);
|
||||
regcache->raw_supply (i, ®val);
|
||||
else if (psw & 0x8000)
|
||||
regcache_raw_supply (regcache, i, regp + SPU_REGMAP);
|
||||
regcache->raw_supply (i, regp + SPU_REGMAP);
|
||||
else
|
||||
regcache_raw_supply (regcache, i, regp + SPI_REGMAP);
|
||||
regcache->raw_supply (i, regp + SPI_REGMAP);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue