about summary refs log tree commit diff
path: root/src/math/x86_64/asinl.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/x86_64/asinl.s')
-rw-r--r--src/math/x86_64/asinl.s12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/math/x86_64/asinl.s b/src/math/x86_64/asinl.s
new file mode 100644
index 00000000..83c392f7
--- /dev/null
+++ b/src/math/x86_64/asinl.s
@@ -0,0 +1,12 @@
+.global asinl
+.type asinl,@function
+asinl:
+	fldt 8(%rsp)
+1:	fld %st(0)
+	fmul %st(0)
+	fld1
+	fsubp %st(1)
+	fsqrt
+	fpatan
+	ret
+