diff options
Diffstat (limited to 'gdb/i386-v4-nat.c')
-rw-r--r-- | gdb/i386-v4-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i386-v4-nat.c b/gdb/i386-v4-nat.c index 36e07fa0b68..2313ff87fff 100644 --- a/gdb/i386-v4-nat.c +++ b/gdb/i386-v4-nat.c @@ -107,7 +107,7 @@ supply_gregset (struct regcache *regcache, const gregset_t *gregsetp) int regnum; for (regnum = 0; regnum < I386_NUM_GREGS; regnum++) - regcache_raw_supply (regcache, regnum, regp + regmap[regnum]); + regcache->raw_supply (regnum, regp + regmap[regnum]); } /* Fill register REGNUM (if it is a general-purpose register) in |