x86_64 math asm, long double functions only
[musl] / src / math / x86_64 / asinl.s
diff --git a/src/math/x86_64/asinl.s b/src/math/x86_64/asinl.s
new file mode 100644 (file)
index 0000000..83c392f
--- /dev/null
@@ -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
+