[FAST486]

Fix the broken math in r67838.


svn path=/trunk/; revision=67839
This commit is contained in:
Aleksandar Andrejevic 2015-05-21 00:44:49 +00:00
parent b0aa61088d
commit 4e457245b2

View file

@ -747,9 +747,8 @@ Fast486FpuAdd(PFAST486_STATE State,
}
else
{
/* Lose the MSB */
TempResult.Mantissa <<= 1;
TempResult.Exponent--;
/* Reverse the mantissa */
TempResult.Mantissa = -(LONGLONG)TempResult.Mantissa;
}
}
}