Pedro Alves wrote: > On Friday 06 November 2009 13:04:18, Vladimir Prus wrote: >> Index: gdb/m68k-tdep.c >> =================================================================== >> --- gdb/m68k-tdep.c     (revision 219692) >> +++ gdb/m68k-tdep.c     (revision 219693) >> @@ -177,7 +177,7 @@ >> if (!gdbarch_tdep (gdbarch)->fpregs_present) >> return 0; >> return (regnum >= M68K_FP0_REGNUM && regnum <= M68K_FP0_REGNUM + 7 >> -         && type != builtin_type_m68881_ext); >> +         && type != register_type (current_gdbarch, M68K_FP0_REGNUM)); >> } >> > > Please don't apply this as is without at least trying to > build it... current_gdbarch doesn't exist anymore. Doh! Here's what I've ended up checking it. - Volodya