rework langinfo code for ABI compat and for use by time code
[musl] / src / math / x86_64 / fmodl.s
1 .global fmodl
2 .type fmodl,@function
3 fmodl:
4         fldt 24(%rsp)
5         fldt 8(%rsp)
6 1:      fprem
7         fstsw %ax
8         sahf
9         jp 1b
10         fstp %st(1)
11         ret