* rs6000-tdep.c (ppc_collect_gregset): When regnum == -1, do

collect all the gprs.
This commit is contained in:
Jim Blandy 2004-05-10 16:53:56 +00:00
parent 26c0b94256
commit 2e56e9c16f
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2004-05-10 Jim Blandy <jimb@redhat.com>
* rs6000-tdep.c (ppc_collect_gregset): When regnum == -1, do
collect all the gprs.
* rs6000-tdep.c (ppc_collect_gregset): Correct off-by-one error in
loop collecting gprs.

View File

@ -260,7 +260,7 @@ ppc_collect_gregset (const struct regset *regset,
for (i = 0; i < 32; i++, offset += 4)
{
if (regnum == -1 || regnum == i)
ppc_collect_reg (regcache, regnum, gregs, offset);
ppc_collect_reg (regcache, i, gregs, offset);
}
if (regnum == -1 || regnum == PC_REGNUM)