acos.s fix: use the formula acos(x) = atan2(sqrt(1-x),sqrt(1+x))
[musl] / src / math / i386 / fmodl.s
1 .global fmodl
2 .type fmodl,@function
3 fmodl:
4         fldt 16(%esp)
5         fldt 4(%esp)
6 1:      fprem
7         fstsw %ax
8         sahf
9         jp 1b
10         fstp %st(1)
11         ret