acos.s fix: use the formula acos(x) = atan2(sqrt(1-x),sqrt(1+x))
[musl] / src / math / x86_64 / fabsl.s
1 .global fabsl
2 .type fabsl,@function
3 fabsl:
4         fldt 8(%rsp)
5         fabs
6         ret