From 4604bcad46e5f1dc5aa75bd730e15169b2d1d68c Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Sat, 19 Jan 2002 12:51:04 +0000 Subject: * i386gnu-nat.c: Include "i386-tdep.h". (fetch_fpregs): Simplify code dealing with uninitialized floating point states such that it doesn't require FP7_REGNUM. --- gdb/i386gnu-nat.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gdb/i386gnu-nat.c') 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 #include +#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; -- cgit v1.1