diff options
author | nsz <nsz@port70.net> | 2012-03-19 08:01:21 +0100 |
---|---|---|
committer | nsz <nsz@port70.net> | 2012-03-19 08:01:21 +0100 |
commit | 0627e58af8514967372a8ff703e7a86c2571acc2 (patch) | |
tree | f37eb7417f107ee34277eb58be20d129dfe8b790 /src/math/i386/exp.s | |
parent | dbdec9722ee604969dddf51e81f8c9e4a9ce064a (diff) | |
parent | 495a52ae7bb581aac2942d7cb095cca2ff53ca3c (diff) | |
download | musl-0627e58af8514967372a8ff703e7a86c2571acc2.tar.gz musl-0627e58af8514967372a8ff703e7a86c2571acc2.tar.bz2 musl-0627e58af8514967372a8ff703e7a86c2571acc2.tar.xz musl-0627e58af8514967372a8ff703e7a86c2571acc2.zip |
Merge branch 'master' of git://git.etalabs.net/musl
Diffstat (limited to 'src/math/i386/exp.s')
-rw-r--r-- | src/math/i386/exp.s | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/math/i386/exp.s b/src/math/i386/exp.s index 18f6cd67..f4769d59 100644 --- a/src/math/i386/exp.s +++ b/src/math/i386/exp.s @@ -34,6 +34,15 @@ exp: .type exp2,@function exp2: fldl 4(%esp) +1: fxam + fnstsw %ax + sahf + jnp 1f + jnc 1f + fstps 4(%esp) + mov $0xfe,%al + and %al,7(%esp) + flds 4(%esp) 1: fld %st(0) frndint fxch %st(1) |