summaryrefslogtreecommitdiff
path: root/src/math/i386/log1pf.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/i386/log1pf.s')
-rw-r--r--src/math/i386/log1pf.s15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/math/i386/log1pf.s b/src/math/i386/log1pf.s
new file mode 100644
index 00000000..2680a8a6
--- /dev/null
+++ b/src/math/i386/log1pf.s
@@ -0,0 +1,15 @@
+.global log1pf
+.type log1pf,@function
+log1pf:
+ mov 4(%esp),%eax
+ fldln2
+ and $0x7fffffff,%eax
+ flds 4(%esp)
+ cmp $0x3e940000,%eax
+ ja 1f
+ fyl2xp1
+ ret
+1: fld1
+ faddp
+ fyl2x
+ ret