diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2018-05-30 14:54:36 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2018-05-30 14:54:36 -0400 |
commit | 0b47d9858ca0805cd52ba959276d08899c7b9f8c (patch) | |
tree | 3eda76d36ecc459bdc4bfa26cfb3afe4631e0a36 /gdb/regcache.c | |
parent | 0ec9f11447514a797ae13760825fa45f9deedd8c (diff) | |
download | gdb-0b47d9858ca0805cd52ba959276d08899c7b9f8c.zip gdb-0b47d9858ca0805cd52ba959276d08899c7b9f8c.tar.gz gdb-0b47d9858ca0805cd52ba959276d08899c7b9f8c.tar.bz2 |
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.
Diffstat (limited to 'gdb/regcache.c')
-rw-r--r-- | gdb/regcache.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/regcache.c b/gdb/regcache.c index dd1dde2..64d167a 100644 --- a/gdb/regcache.c +++ b/gdb/regcache.c @@ -489,14 +489,6 @@ registers_changed (void) } void -regcache_raw_update (struct regcache *regcache, int regnum) -{ - gdb_assert (regcache != NULL); - - regcache->raw_update (regnum); -} - -void regcache::raw_update (int regnum) { assert_regnum (regnum); |