Remove regcache_raw_collect
Remove regcache_raw_collect, update callers to use regcache::raw_collect. gdb/ChangeLog: * regcache.h (regcache_raw_collect): Remove, update callers to use regcache::raw_collect. * regcache.c (regcache_raw_collect): Remove.
This commit is contained in:
parent
73e1c03f93
commit
34a79281e4
58 changed files with 354 additions and 417 deletions
|
@ -948,15 +948,6 @@ detached_regcache::raw_supply_zeroed (int regnum)
|
|||
m_register_status[regnum] = REG_VALID;
|
||||
}
|
||||
|
||||
/* Collect register REGNUM from REGCACHE and store its contents in BUF. */
|
||||
|
||||
void
|
||||
regcache_raw_collect (const struct regcache *regcache, int regnum, void *buf)
|
||||
{
|
||||
gdb_assert (regcache != NULL && buf != NULL);
|
||||
regcache->raw_collect (regnum, buf);
|
||||
}
|
||||
|
||||
void
|
||||
regcache::raw_collect (int regnum, void *buf) const
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue