summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/i386/fabs.S
blob: d9c1c2212906caadde72b37ffe3972a8ee997bb4 (plain)
1
2
3
4
5
6
7
8
9
10
11

.text
.type   fabs,@function
.global fabs
fabs:
        fldl    4(%esp)
        fabs
        ret

.ende:
.size    fabs,.ende-fabs