* alphabsd-tdep.c (alphabsd_supply_fpreg): Fix typo last change.
(alphabsd_fill_fpreg): Likewise.
This commit is contained in:
parent
f534e522c9
commit
ffdab7f627
1 changed files with 2 additions and 2 deletions
|
@ -44,12 +44,12 @@ void
|
||||||
alphabsd_supply_fpreg (char *fpregs, int regno)
|
alphabsd_supply_fpreg (char *fpregs, int regno)
|
||||||
{
|
{
|
||||||
/* FPCR is at slot 33; slot 32 unused. */
|
/* FPCR is at slot 33; slot 32 unused. */
|
||||||
alpha_supply_fp_regs (regno, regs, regs + 32*8);
|
alpha_supply_fp_regs (regno, fpregs, fpregs + 32*8);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
alphabsd_fill_fpreg (char *fpregs, int regno)
|
alphabsd_fill_fpreg (char *fpregs, int regno)
|
||||||
{
|
{
|
||||||
/* FPCR is at slot 33; slot 32 unused. */
|
/* FPCR is at slot 33; slot 32 unused. */
|
||||||
alpha_fill_fp_regs (regno, regs, regs + 32*8);
|
alpha_fill_fp_regs (regno, fpregs, fpregs + 32*8);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue