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

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

.Lende:
        .size    asinh,.Lende-asinh