From: schwab Date: Sun, 6 Jul 2003 18:58:26 +0000 (+0000) Subject: * m68klinux-nat.c (fill_fpregset): Fix use of loop index. X-Git-Tag: cr-0x99~894 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=10730058dc08e3136c9958614876d8db5706df8a;p=pf3gnuchains%2Fpf3gnuchains4x.git * m68klinux-nat.c (fill_fpregset): Fix use of loop index. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fefe1ab4e0..1643931972 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2003-07-06 Andreas Schwab + + * m68klinux-nat.c (fill_fpregset): Fix use of loop index. + 2003-07-04 Joel Brobecker * rs6000-nat.c (vmap_symtab): Fix compilation error. diff --git a/gdb/m68klinux-nat.c b/gdb/m68klinux-nat.c index e077deadc2..86e22b7c72 100644 --- a/gdb/m68klinux-nat.c +++ b/gdb/m68klinux-nat.c @@ -380,12 +380,12 @@ fill_fpregset (elf_fpregset_t *fpregsetp, int regno) /* Fill in the floating-point registers. */ for (i = FP0_REGNUM; i < FP0_REGNUM + 8; i++) if (regno == -1 || regno == i) - regcache_collect (regno, FPREG_ADDR (fpregsetp, regno - FP0_REGNUM)); + regcache_collect (i, FPREG_ADDR (fpregsetp, i - FP0_REGNUM)); /* Fill in the floating-point control registers. */ for (i = M68K_FPC_REGNUM; i <= M68K_FPI_REGNUM; i++) if (regno == -1 || regno == i) - regcache_collect (regno, (char *) &fpregsetp->fpcntl[regno - M68K_FPC_REGNUM]); + regcache_collect (i, (char *) &fpregsetp->fpcntl[i - M68K_FPC_REGNUM]); } #ifdef HAVE_PTRACE_GETREGS