math: move x86_64 exp2l implementation to exp2l.s from expl.s
[musl] / src / math / i386 / remainderl.s
1 .global remainderl
2 .type remainderl,@function
3 remainderl:
4         fldt 16(%esp)
5         fldt 4(%esp)
6 1:      fprem1
7         fstsw %ax
8         sahf
9         jp 1b
10         fstp %st(1)
11         ret