summaryrefslogtreecommitdiff
path: root/gdb/i386gnu-nat.c
diff options
context:
space:
mode:
authortschwinge <tschwinge>2009-07-20 09:50:59 +0000
committertschwinge <tschwinge>2009-07-20 09:50:59 +0000
commitcc24bcc563937eb951e657772b32f23adff6f61a (patch)
tree1d798f3734cab7a36638f7c03159ccb899ac40b4 /gdb/i386gnu-nat.c
parent7d577b32160ff8b521da7d49fd566df4b2041168 (diff)
downloadgdb-cc24bcc563937eb951e657772b32f23adff6f61a.tar.gz
2009-07-20 Thomas Schwinge <tschwinge@gnu.org>
* i386gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Adjust to 2009-02-23 target_ops changes.
Diffstat (limited to 'gdb/i386gnu-nat.c')
-rw-r--r--gdb/i386gnu-nat.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/i386gnu-nat.c b/gdb/i386gnu-nat.c
index 1fae70552f1..a93793217f5 100644
--- a/gdb/i386gnu-nat.c
+++ b/gdb/i386gnu-nat.c
@@ -111,7 +111,8 @@ supply_fpregset (struct regcache *regcache, const gdb_fpregset_t *fpregs)
/* Fetch register REGNO, or all regs if REGNO is -1. */
void
-gnu_fetch_registers (struct regcache *regcache, int regno)
+gnu_fetch_registers (struct target_ops *ops,
+ struct regcache *regcache, int regno)
{
struct proc *thread;
@@ -202,7 +203,8 @@ store_fpregs (const struct regcache *regcache, struct proc *thread, int regno)
/* Store at least register REGNO, or all regs if REGNO == -1. */
void
-gnu_store_registers (struct regcache *regcache, int regno)
+gnu_store_registers (struct target_ops *ops,
+ struct regcache *regcache, int regno)
{
struct proc *thread;
struct gdbarch *gdbarch = get_regcache_arch (regcache);