math: add drem and dremf weak aliases to i386 remainder asm
[musl] / src / math / i386 / remainderf.s
1 .global remainderf
2 .type remainderf,@function
3 remainderf:
4 .weak dremf
5 .type dremf,@function
6 dremf:
7         flds 8(%esp)
8         flds 4(%esp)
9 1:      fprem1
10         fstsw %ax
11         sahf
12         jp 1b
13         fstp %st(1)
14         ret