* i386bsd-nat.c: Include "i386-tdep.h".
authorMark Kettenis <kettenis@gnu.org>
Sat, 15 Jun 2002 13:54:22 +0000 (13:54 +0000)
committerMark Kettenis <kettenis@gnu.org>
Sat, 15 Jun 2002 13:54:22 +0000 (13:54 +0000)
(supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
I386_NUM_GREGS.

gdb/ChangeLog
gdb/i386bsd-nat.c

index bf7b444cec0c41462f00145c558ab1632c626185..69f9f553e06c56b3c0e04685c6e3ddb065241383 100644 (file)
@@ -1,5 +1,9 @@
 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
 
+       * i386bsd-nat.c: Include "i386-tdep.h".
+       (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
+       I386_NUM_GREGS.
+
        * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
        and associated comment.  They no longer make any sense, since we
        don't use this file anymore on Linux.
index a941d5b468c639a82ad3bb2a85b5ffec3efe663a..3ab22a9bab8f7e41ed06afecdd83cda08670b67d 100644 (file)
@@ -43,6 +43,7 @@ typedef struct fpreg fpregset_t;
 #endif
 
 #include "gregset.h"
+#include "i386-tdep.h"
 \f
 
 /* In older BSD versions we cannot get at some of the segment
@@ -125,7 +126,7 @@ supply_gregset (gregset_t *gregsetp)
 {
   int i;
 
-  for (i = 0; i < NUM_GREGS; i++)
+  for (i = 0; i < I386_NUM_GREGS; i++)
     {
       if (CANNOT_FETCH_REGISTER (i))
        supply_register (i, NULL);
@@ -143,7 +144,7 @@ fill_gregset (gregset_t *gregsetp, int regno)
 {
   int i;
 
-  for (i = 0; i < NUM_GREGS; i++)
+  for (i = 0; i < I386_NUM_GREGS; i++)
     if ((regno == -1 || regno == i) && ! CANNOT_STORE_REGISTER (i))
       regcache_collect (i, REG_ADDR (gregsetp, i));
 }