mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-26 11:33:45 +08:00
* i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
This commit is contained in:
parent
57976e88bb
commit
099a94140a
@ -1,5 +1,7 @@
|
||||
2002-06-15 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
|
||||
|
||||
* i386bsd-nat.c: Include "i386-tdep.h".
|
||||
(supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
|
||||
I386_NUM_GREGS.
|
||||
|
@ -329,7 +329,7 @@ fill_gregset (elf_gregset_t *gregsetp, int regno)
|
||||
int i;
|
||||
|
||||
for (i = 0; i < NUM_GREGS; i++)
|
||||
if ((regno == -1 || regno == i))
|
||||
if (regno == -1 || regno == i)
|
||||
regcache_collect (i, regp + regmap[i]);
|
||||
|
||||
if ((regno == -1 || regno == I386_LINUX_ORIG_EAX_REGNUM)
|
||||
|
Loading…
Reference in New Issue
Block a user