diff options
Diffstat (limited to 'gdb/lynx-nat.c')
-rw-r--r-- | gdb/lynx-nat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/lynx-nat.c b/gdb/lynx-nat.c index 9f99b47d4b8..dab47d4cd8c 100644 --- a/gdb/lynx-nat.c +++ b/gdb/lynx-nat.c @@ -325,7 +325,7 @@ fetch_inferior_registers (int regno) *(int *) &buf[i] = reg; } - supply_register (regno, buf); + regcache_raw_supply (current_regcache, regno, buf); } } } @@ -593,8 +593,8 @@ fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, int which, for (regno = 0; regno < NUM_REGS; regno++) if (regmap[regno] != -1) - supply_register (regno, core_reg_sect + offsetof (st_t, ec) - + regmap[regno]); + regcache_raw_supply (current_regcache, regno, + core_reg_sect + offsetof (st_t, ec) + regmap[regno]); #ifdef SPARC /* Fetching this register causes all of the I & L regs to be read from the |