* m68klinux-nat.c (getfpregs_supplies): Replace gdbarch_fp0_regnum by
authorMarkus Deuling <deuling@de.ibm.com>
Mon, 18 Feb 2008 19:58:27 +0000 (19:58 +0000)
committerMarkus Deuling <deuling@de.ibm.com>
Mon, 18 Feb 2008 19:58:27 +0000 (19:58 +0000)
M68K_FP0_REGNUM.

gdb/ChangeLog
gdb/m68klinux-nat.c

index 7ad240e..0856a34 100644 (file)
@@ -1,5 +1,10 @@
 2008-02-18  Markus Deuling  <deuling@de.ibm.com>
 
+       * m68klinux-nat.c (getfpregs_supplies): Replace gdbarch_fp0_regnum by
+       M68K_FP0_REGNUM.
+
+2008-02-18  Markus Deuling  <deuling@de.ibm.com>
+
        * sentinel-frame.c (sentinel_frame_prev_register): Do not call
        register_offset_hack anymore.
 
index edd002e..7467190 100644 (file)
@@ -79,8 +79,7 @@ getregs_supplies (int regno)
 int
 getfpregs_supplies (int regno)
 {
-  return gdbarch_fp0_regnum (current_gdbarch) <= regno
-        && regno <= M68K_FPI_REGNUM;
+  return M68K_FP0_REGNUM <= regno && regno <= M68K_FPI_REGNUM;
 }
 
 /* Does the current host support the GETREGS request?  */