summaryrefslogtreecommitdiff
path: root/sysdeps/libm-i387/s_cosl.S
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/libm-i387/s_cosl.S')
-rw-r--r--sysdeps/libm-i387/s_cosl.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/libm-i387/s_cosl.S b/sysdeps/libm-i387/s_cosl.S
index 2ddb549b77..f41fc19958 100644
--- a/sysdeps/libm-i387/s_cosl.S
+++ b/sysdeps/libm-i387/s_cosl.S
@@ -13,7 +13,7 @@ ENTRY(__cosl)
fldt 4(%esp)
fcos
fnstsw %ax
- andw $0x400,%ax
+ testl $0x400,%eax
jnz 1f
ret
1: fldpi
@@ -21,10 +21,10 @@ ENTRY(__cosl)
fxch %st(1)
2: fprem1
fnstsw %ax
- andw $0x400,%ax
+ testl $0x400,%eax
jnz 2b
fstp %st(1)
fcos
ret
-PSEUDO_END (__cosl)
+END (__cosl)
weak_alias (__cosl, cosl)