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
|
@ -156,11 +156,11 @@ sparc64nbsd_supply_pcb (struct regcache *regcache, struct pcb *pcb)
|
|||
read_memory(pcb->pcb_sp + BIAS - 176 + (11 * 8),
|
||||
(gdb_byte *)&pcb->pcb_pc, sizeof pcb->pcb_pc);
|
||||
|
||||
regcache_raw_supply (regcache, SPARC_SP_REGNUM, &pcb->pcb_sp);
|
||||
regcache_raw_supply (regcache, SPARC64_PC_REGNUM, &pcb->pcb_pc);
|
||||
regcache->raw_supply (SPARC_SP_REGNUM, &pcb->pcb_sp);
|
||||
regcache->raw_supply (SPARC64_PC_REGNUM, &pcb->pcb_pc);
|
||||
|
||||
state = pcb->pcb_pstate << 8 | pcb->pcb_cwp;
|
||||
regcache_raw_supply (regcache, SPARC64_STATE_REGNUM, &state);
|
||||
regcache->raw_supply (SPARC64_STATE_REGNUM, &state);
|
||||
|
||||
sparc_supply_rwindow (regcache, pcb->pcb_sp, -1);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue