From: Mark Kettenis Date: Sat, 15 Jun 2002 14:03:10 +0000 (+0000) Subject: * i386-linux-nat.c (fill_gregset): Remove redundant parentheses. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=099a94140a8ba8764769c824d9115d2635eb6ae2;p=binutils-gdb.git * i386-linux-nat.c (fill_gregset): Remove redundant parentheses. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 69f9f553e06..a200ff68241 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2002-06-15 Mark Kettenis + * 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. diff --git a/gdb/i386-linux-nat.c b/gdb/i386-linux-nat.c index 26f5aaf85ab..aecca1d8251 100644 --- a/gdb/i386-linux-nat.c +++ b/gdb/i386-linux-nat.c @@ -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)