summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/i386/hypot.S
blob: 730b2c5c97914c589ff7ed8c7a9c54f1d5eabc0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

.text
.type   hypot,@function
.global hypot
hypot:
        fldl     4(%esp)
        fmul    %st(0),%st(0)
        fldl    12(%esp)
        fmul    %st(0),%st(0)
        faddp
        fsqrt
        ret

.ende:
.size    hypot,.ende-hypot