mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 07:56:59 +00:00
[FAST486]
Fix the broken math in r67838. svn path=/trunk/; revision=67839
This commit is contained in:
parent
b0aa61088d
commit
4e457245b2
1 changed files with 2 additions and 3 deletions
|
@ -747,9 +747,8 @@ Fast486FpuAdd(PFAST486_STATE State,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Lose the MSB */
|
/* Reverse the mantissa */
|
||||||
TempResult.Mantissa <<= 1;
|
TempResult.Mantissa = -(LONGLONG)TempResult.Mantissa;
|
||||||
TempResult.Exponent--;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue