diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2018-05-30 14:54:40 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2018-05-30 14:54:40 -0400 |
commit | 4f0420fdabda76f462bd29a02d9be575e0e0cce7 (patch) | |
tree | 8b216760750e3e77021ea6f6567d7a9c5f90f9ca /gdb/mips-tdep.c | |
parent | 502fe83eb549476fac09ec62c7fd66447791ba2a (diff) | |
download | gdb-4f0420fdabda76f462bd29a02d9be575e0e0cce7.zip gdb-4f0420fdabda76f462bd29a02d9be575e0e0cce7.tar.gz gdb-4f0420fdabda76f462bd29a02d9be575e0e0cce7.tar.bz2 |
Remove regcache_raw_write_part
Remove regcache_raw_write_part, update callers to use
regcache::raw_write_part instead.
gdb/ChangeLog:
* regcache.h (regcache_raw_write_part): Remove, update callers
to use regcache::raw_write_part instead.
* regcache.c (regcache_raw_write_part): Remove.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 926b084..64b8da7 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -780,7 +780,7 @@ mips_pseudo_register_write (struct gdbarch *gdbarch, register_size (gdbarch, cookednum)) { if (gdbarch_tdep (gdbarch)->mips64_transfers_32bit_regs_p) - regcache_raw_write_part (regcache, rawnum, 0, 4, buf); + regcache->raw_write_part (rawnum, 0, 4, buf); else { /* Sign extend the shortened version of the register prior |