diff options
Diffstat (limited to 'gdb/mipsnbsd-nat.c')
-rw-r--r-- | gdb/mipsnbsd-nat.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/mipsnbsd-nat.c b/gdb/mipsnbsd-nat.c index 4462c1b..6d160c1 100644 --- a/gdb/mipsnbsd-nat.c +++ b/gdb/mipsnbsd-nat.c @@ -40,7 +40,8 @@ getregs_supplies (struct gdbarch *gdbarch, int regno) } static void -mipsnbsd_fetch_inferior_registers (struct regcache *regcache, int regno) +mipsnbsd_fetch_inferior_registers (struct target_ops *ops, + struct regcache *regcache, int regno) { struct gdbarch *gdbarch = get_regcache_arch (regcache); if (regno == -1 || getregs_supplies (gdbarch, regno)) @@ -69,7 +70,8 @@ mipsnbsd_fetch_inferior_registers (struct regcache *regcache, int regno) } static void -mipsnbsd_store_inferior_registers (struct regcache *regcache, int regno) +mipsnbsd_store_inferior_registers (struct target_ops *ops, + struct regcache *regcache, int regno) { struct gdbarch *gdbarch = get_regcache_arch (regcache); if (regno == -1 || getregs_supplies (gdbarch, regno)) |