asm for inverse trig functions
[musl] / src / math / i386 / asin.s
1 .global asinf
2 .type asinf,@function
3 asinf:
4         flds 4(%esp)
5         jmp 1f
6
7 .global asinl
8 .type asinl,@function
9 asinl:
10         fldt 4(%esp)
11         jmp 1f
12
13 .global asin
14 .type asin,@function
15 asin:
16         fldl 4(%esp)
17 1:      fld %st(0)
18         fmul %st(0)
19         fld1
20         fsubp %st(1)
21         fsqrt
22         fpatan
23         ret