math: fix typo in i386 remquof and remquol asm

(fldl instruction was used instead of flds and fldt)
This commit is contained in:
nsz 2012-03-27 22:01:21 +02:00
parent e68a4633e0
commit ad23771c32
1 changed files with 5 additions and 5 deletions

View File

@ -2,8 +2,8 @@
.type remquof,@function
remquof:
mov 12(%esp),%ecx
fldl 8(%esp)
fldl 4(%esp)
flds 8(%esp)
flds 4(%esp)
mov 11(%esp),%dh
xor 7(%esp),%dh
jmp 1f
@ -12,8 +12,8 @@ remquof:
.type remquol,@function
remquol:
mov 28(%esp),%ecx
fldl 16(%esp)
fldl 4(%esp)
fldt 16(%esp)
fldt 4(%esp)
mov 25(%esp),%dh
xor 13(%esp),%dh
jmp 1f
@ -26,7 +26,7 @@ remquo:
fldl 4(%esp)
mov 19(%esp),%dh
xor 11(%esp),%dh
1: fprem1
1: fprem1
fnstsw %ax
sahf
jp 1b