Remove regcache_cooked_write_part

Remove regcache_cooked_write_part, update callers to use
regcache::cooked_write_part.

gdb/ChangeLog:

	* regcache.h (regcache_cooked_write_part): Remove, update
	callers to use regcache::cooked_write_part.
	* regcache.c (regcache_cooked_write_part): Remove.
This commit is contained in:
Simon Marchi
2018-05-30 14:54:44 -04:00
parent 73bb000052
commit e4c4a59b48
12 changed files with 47 additions and 64 deletions

View File

@@ -463,7 +463,7 @@ m32c_part_write (struct m32c_reg *reg, struct regcache *cache,
int offset, len;
m32c_find_part (reg, &offset, &len);
regcache_cooked_write_part (cache, reg->rx->num, offset, len, buf);
cache->cooked_write_part (reg->rx->num, offset, len, buf);
return REG_VALID;
}