fscale fix (bug noticed by Kuwanger, fix by malc)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1528 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2005-07-24 14:33:17 +00:00
parent 09d459a1db
commit 57e4c06ed7
2 changed files with 2 additions and 5 deletions

View file

@ -2888,11 +2888,7 @@ void helper_frndint(void)
void helper_fscale(void)
{
CPU86_LDouble fpsrcop, fptemp;
fpsrcop = 2.0;
fptemp = pow(fpsrcop,ST1);
ST0 *= fptemp;
ST0 = ldexp (ST0, (int)(ST1));
}
void helper_fsin(void)