* i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace usage of NUM_GREGS with I386_NUM_GREGS.
This commit is contained in:
parent
099a94140a
commit
98df638700
2 changed files with 8 additions and 4 deletions
|
@ -1,5 +1,9 @@
|
|||
2002-06-15 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
|
||||
OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
|
||||
usage of NUM_GREGS with I386_NUM_GREGS.
|
||||
|
||||
* i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
|
||||
|
||||
* i386bsd-nat.c: Include "i386-tdep.h".
|
||||
|
|
|
@ -171,7 +171,7 @@ kernel_u_size (void)
|
|||
#endif
|
||||
|
||||
/* Registers we shouldn't try to fetch. */
|
||||
#define OLD_CANNOT_FETCH_REGISTER(regno) ((regno) >= NUM_GREGS)
|
||||
#define OLD_CANNOT_FETCH_REGISTER(regno) ((regno) >= I386_NUM_GREGS)
|
||||
|
||||
/* Fetch one register. */
|
||||
|
||||
|
@ -237,7 +237,7 @@ old_fetch_inferior_registers (int regno)
|
|||
}
|
||||
|
||||
/* Registers we shouldn't try to store. */
|
||||
#define OLD_CANNOT_STORE_REGISTER(regno) ((regno) >= NUM_GREGS)
|
||||
#define OLD_CANNOT_STORE_REGISTER(regno) ((regno) >= I386_NUM_GREGS)
|
||||
|
||||
/* Store one register. */
|
||||
|
||||
|
@ -311,7 +311,7 @@ supply_gregset (elf_gregset_t *gregsetp)
|
|||
elf_greg_t *regp = (elf_greg_t *) gregsetp;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < NUM_GREGS; i++)
|
||||
for (i = 0; i < I386_NUM_GREGS; i++)
|
||||
supply_register (i, (char *) (regp + regmap[i]));
|
||||
|
||||
if (I386_LINUX_ORIG_EAX_REGNUM < NUM_REGS)
|
||||
|
@ -328,7 +328,7 @@ fill_gregset (elf_gregset_t *gregsetp, int regno)
|
|||
elf_greg_t *regp = (elf_greg_t *) gregsetp;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < NUM_GREGS; i++)
|
||||
for (i = 0; i < I386_NUM_GREGS; i++)
|
||||
if (regno == -1 || regno == i)
|
||||
regcache_collect (i, regp + regmap[i]);
|
||||
|
||||
|
|
Loading…
Reference in a new issue