From 4ed226fe6da8c51a04bd9063a8a58117e2c7a769 Mon Sep 17 00:00:00 2001 From: Markus Deuling Date: Mon, 18 Feb 2008 19:58:27 +0000 Subject: * m68klinux-nat.c (getfpregs_supplies): Replace gdbarch_fp0_regnum by M68K_FP0_REGNUM. --- gdb/m68klinux-nat.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gdb/m68klinux-nat.c') diff --git a/gdb/m68klinux-nat.c b/gdb/m68klinux-nat.c index edd002e..7467190 100644 --- a/gdb/m68klinux-nat.c +++ b/gdb/m68klinux-nat.c @@ -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? */ -- cgit v1.1