[FAST486]

Fix Fast486FpuFromDoubleReal.


svn path=/trunk/; revision=67832
This commit is contained in:
Aleksandar Andrejevic 2015-05-20 01:04:21 +00:00
parent e99e22229d
commit 4b0eed1598

View file

@ -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 */