diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2018-05-30 14:54:45 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2018-05-30 14:54:45 -0400 |
commit | 73e1c03f93f0294b464dc2b67de1f9aaae84838d (patch) | |
tree | 723ab692f6e43ff44e8ece53bdb5cff45cc576e0 /gdb/i386-gnu-nat.c | |
parent | e4c4a59b48b2cec10cffac4f562937de00cb5f3f (diff) | |
download | binutils-73e1c03f93f0294b464dc2b67de1f9aaae84838d.zip binutils-73e1c03f93f0294b464dc2b67de1f9aaae84838d.tar.gz binutils-73e1c03f93f0294b464dc2b67de1f9aaae84838d.tar.bz2 |
Remove regcache_raw_supply
Remove regcache_raw_supply, update callers to use
detached_regcache::raw_supply.
gdb/ChangeLog:
* regcache.h (regcache_raw_supply): Remove, update callers to
use detached_regcache::raw_supply.
* regcache.c (regcache_raw_supply): Remove.
Diffstat (limited to 'gdb/i386-gnu-nat.c')
-rw-r--r-- | gdb/i386-gnu-nat.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gdb/i386-gnu-nat.c b/gdb/i386-gnu-nat.c index a738308..1acfc07 100644 --- a/gdb/i386-gnu-nat.c +++ b/gdb/i386-gnu-nat.c @@ -138,7 +138,7 @@ gnu_fetch_registers (struct target_ops *ops, proc_debug (thread, "fetching all register"); for (i = 0; i < I386_NUM_GREGS; i++) - regcache_raw_supply (regcache, i, REG_ADDR (state, i)); + regcache->raw_supply (i, REG_ADDR (state, i)); thread->fetched_regs = ~0; } else @@ -147,8 +147,7 @@ gnu_fetch_registers (struct target_ops *ops, gdbarch_register_name (regcache->arch (), regno)); - regcache_raw_supply (regcache, regno, - REG_ADDR (state, regno)); + regcache->raw_supply (regno, REG_ADDR (state, regno)); thread->fetched_regs |= (1 << regno); } } @@ -250,8 +249,8 @@ gnu_store_registers (struct target_ops *ops, gdbarch_register_name (gdbarch, check_regno)); if (regno >= 0 && regno != check_regno) /* Update GDB's copy of the register. */ - regcache_raw_supply (regcache, check_regno, - REG_ADDR (state, check_regno)); + regcache->raw_supply (check_regno, + REG_ADDR (state, check_regno)); else warning (_("... also writing this register! " "Suspicious...")); |