X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fi386%2Fasin.s;fp=src%2Fmath%2Fi386%2Fasin.s;h=cab7bfc84466cf63d220bc6824c380577addd413;hb=bc33e617040166e971ec1e6822ac1cc417eb6c9c;hp=0000000000000000000000000000000000000000;hpb=495a52ae7bb581aac2942d7cb095cca2ff53ca3c;p=musl diff --git a/src/math/i386/asin.s b/src/math/i386/asin.s new file mode 100644 index 00000000..cab7bfc8 --- /dev/null +++ b/src/math/i386/asin.s @@ -0,0 +1,23 @@ +.global asinf +.type asinf,@function +asinf: + flds 4(%esp) + jmp 1f + +.global asinl +.type asinl,@function +asinl: + fldt 4(%esp) + jmp 1f + +.global asin +.type asin,@function +asin: + fldl 4(%esp) +1: fld %st(0) + fmul %st(0) + fld1 + fsubp %st(1) + fsqrt + fpatan + ret