mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 02:25:40 +00:00
[FAST486]
Fix Fast486FpuFromDoubleReal. svn path=/trunk/; revision=67832
This commit is contained in:
parent
e99e22229d
commit
4b0eed1598
1 changed files with 1 additions and 1 deletions
|
@ -457,7 +457,7 @@ Fast486FpuFromDoubleReal(PFAST486_STATE State,
|
||||||
/* If this is a zero, we're done */
|
/* If this is a zero, we're done */
|
||||||
if (Value == 0) return;
|
if (Value == 0) return;
|
||||||
|
|
||||||
if (Result->Exponent == 0x3FF) Result->Exponent = FPU_MAX_EXPONENT + 1;
|
if (Result->Exponent == 0x7FF) Result->Exponent = FPU_MAX_EXPONENT + 1;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Adjust the exponent bias */
|
/* Adjust the exponent bias */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue