diff options
Diffstat (limited to 'src/math/i386/log1p.s')
-rw-r--r-- | src/math/i386/log1p.s | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/math/i386/log1p.s b/src/math/i386/log1p.s index 6b6929c7..354f391a 100644 --- a/src/math/i386/log1p.s +++ b/src/math/i386/log1p.s @@ -16,9 +16,6 @@ log1p: fyl2x ret # subnormal x, return x with underflow -2: fnstsw %ax - and $16,%ax - jnz 1f - fsts 4(%esp) +2: fsts 4(%esp) fstp %st(1) -1: ret + ret |