* Get8087CW: Make sure that high bits of result are clear.

git-svn-id: trunk@19465 -
This commit is contained in:
sergei 2011-10-11 10:34:52 +00:00
parent 9df8be501a
commit 369725f2c4

View File

@ -51,7 +51,8 @@ FPC_ABSMASK_DOUBLE:
tmp: word;
asm
fnstcw tmp
movq tmp,%rax
movw tmp,%ax
andl $0xffff,%eax { clears bits 32-63 }
end;