diff options
Diffstat (limited to 'gdb/i386gnu-nat.c')
-rw-r--r-- | gdb/i386gnu-nat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/i386gnu-nat.c b/gdb/i386gnu-nat.c index cc7d6e5..9188ea4 100644 --- a/gdb/i386gnu-nat.c +++ b/gdb/i386gnu-nat.c @@ -33,6 +33,8 @@ #include <mach/message.h> #include <mach/exception.h> +#include "i386-tdep.h" + #include "gnu-nat.h" #include "i387-nat.h" @@ -76,9 +78,7 @@ fetch_fpregs (struct proc *thread) { int i; - for (i = FP0_REGNUM; i <= FP7_REGNUM; i++) - supply_register (i, NULL); - for (i = FCTRL_REGNUM; i <= FOP_REGNUM; i++) + for (i = FP0_REGNUM; i <= FOP_REGNUM; i++) supply_register (i, NULL); return; |