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

atanh:
        fldln2
        fldl    4(%esp)
        fld1
        fld     %st(1)
        fadd    %st(1),%st(0)
        fxch    %st(1)
        fsubp   %st(0),%st(2)
        fdivp   %st(0),%st(1)
        fyl2x
        fmuls   __half
        ret

.Lende:
        .size    atanh,.Lende-atanh