diff options
author | nsz <nsz@port70.net> | 2012-03-19 10:20:24 +0100 |
---|---|---|
committer | nsz <nsz@port70.net> | 2012-03-19 10:20:24 +0100 |
commit | 9322344fa4c47a64361a81eda1b1930cd4341626 (patch) | |
tree | 94a641e60aef228d799035dc7c4a889ff39e4b3a /src/math/i386/asin.s | |
parent | 0627e58af8514967372a8ff703e7a86c2571acc2 (diff) | |
parent | 58ff9e8eaf99f2294232be860daa2ca6f3674faf (diff) | |
download | musl-9322344fa4c47a64361a81eda1b1930cd4341626.tar.gz musl-9322344fa4c47a64361a81eda1b1930cd4341626.tar.bz2 musl-9322344fa4c47a64361a81eda1b1930cd4341626.tar.xz musl-9322344fa4c47a64361a81eda1b1930cd4341626.zip |
Merge branch 'master' of git://git.etalabs.net/musl
Diffstat (limited to 'src/math/i386/asin.s')
-rw-r--r-- | src/math/i386/asin.s | 23 |
1 files changed, 23 insertions, 0 deletions
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 |