summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/i386/acosh.S
blob: 0611c9d3179eee5de0e6dc0808ed55a75dc241a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.text
.global acosh
.type   acosh,@function

acosh:
        fldln2
        fldl    4(%esp)
        fld     %st(0)
        fmul    %st(0),%st(0)
        fld1
        fsubrp  %st(0),%st(1)
        fsqrt
        faddp   %st(0),%st(1)
        fyl2x
        ret

.Lende:
        .size    acosh,.Lende-acosh