mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +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 (Value == 0) return;
|
||||
|
||||
if (Result->Exponent == 0x3FF) Result->Exponent = FPU_MAX_EXPONENT + 1;
|
||||
if (Result->Exponent == 0x7FF) Result->Exponent = FPU_MAX_EXPONENT + 1;
|
||||
else
|
||||
{
|
||||
/* Adjust the exponent bias */
|
||||
|
|
Loading…
Reference in a new issue