2003-10-06 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / i386-nto-tdep.c
index 381119f7033769ed952d9ba4c004e07d9542c752..a80c7a47f988e2873511255477768cecd90d80f5 100644 (file)
@@ -87,9 +87,9 @@ static void
 i386nto_supply_fpregset (char *fpregs)
 {
   if (nto_cpuinfo_valid && nto_cpuinfo_flags | X86_CPU_FXSR)
-    i387_supply_fxsave (fpregs);
+    i387_supply_fxsave (current_regcache, -1, fpregs);
   else
-    i387_supply_fsave (fpregs);
+    i387_supply_fsave (current_regcache, -1, fpregs);
 }
 
 static void
@@ -240,6 +240,7 @@ static CORE_ADDR
 i386nto_sigcontext_addr (struct frame_info *next_frame)
 {
   char buf[4];
+  CORE_ADDR sp;
 
   frame_unwind_register (next_frame, SP_REGNUM, buf);
   sp = extract_unsigned_integer (buf, 4);
This page took 0.023115 seconds and 4 git commands to generate.