Remove regcache_raw_update

Remove regcache_raw_update, update callers to use
readable_regcache::raw_update instead.

gdb/ChangeLog:

	* regcache.h (regcache_raw_update): Remove, update callers to
	use readable_regcache::raw_update instead.
	* regcache.c (regcache_raw_update): Remove.
This commit is contained in:
Simon Marchi
2018-05-30 14:54:36 -04:00
parent 0ec9f11447
commit 0b47d9858c
4 changed files with 8 additions and 13 deletions

View File

@@ -488,14 +488,6 @@ registers_changed (void)
alloca (0);
}
void
regcache_raw_update (struct regcache *regcache, int regnum)
{
gdb_assert (regcache != NULL);
regcache->raw_update (regnum);
}
void
regcache::raw_update (int regnum)
{