* m68kbsd-nat.c (m68kbsd_collect_gregset): Specify correct

register number in regcache_raw_collect call.
(m68kbsd_collect_fpregset): Likewise.
* vaxbsd-nat.c (vaxbsd_collect_gregset): Likewise.
This commit is contained in:
Mark Kettenis
2004-05-24 08:13:40 +00:00
parent 7d7e6bc475
commit 5df97fde61
3 changed files with 8 additions and 4 deletions

View File

@ -54,7 +54,7 @@ vaxbsd_collect_gregset (const struct regcache *regcache,
for (i = 0; i <= VAX_NUM_REGS; i++)
{
if (regnum == -1 || regnum == i)
regcache_raw_collect (regcache, regnum, regs + i * 4);
regcache_raw_collect (regcache, i, regs + i * 4);
}
}