diff options
Diffstat (limited to 'gdb/i386-nto-tdep.c')
-rw-r--r-- | gdb/i386-nto-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/i386-nto-tdep.c b/gdb/i386-nto-tdep.c index 8538db7..e441fcf 100644 --- a/gdb/i386-nto-tdep.c +++ b/gdb/i386-nto-tdep.c @@ -77,9 +77,9 @@ i386nto_supply_gregset (char *gpregs) { int offset = nto_reg_offset (regno); if (offset == -1) - supply_register (regno, (char *) &empty); + regcache_raw_supply (current_regcache, regno, (char *) &empty); else - supply_register (regno, gpregs + offset); + regcache_raw_supply (current_regcache, regno, gpregs + offset); } } |