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 2313ff87fff..ddf50d9df48 100644 --- a/gdb/i386-v4-nat.c +++ b/gdb/i386-v4-nat.c @@ -123,7 +123,7 @@ fill_gregset (const struct regcache *regcache, for (i = 0; i < I386_NUM_GREGS; i++) if (regnum == -1 || regnum == i) - regcache_raw_collect (regcache, i, regp + regmap[i]); + regcache->raw_collect (i, regp + regmap[i]); } #endif /* HAVE_GREGSET_T */ |