add .gitignore file
[musl] / src / math / i386 / e_remainder.s
1 .global remainderf
2 .type remainderf,@function
3 remainderf:
4         flds 8(%esp)
5         flds 4(%esp)
6         jmp 1f
7         
8 .global remainder
9 .type remainder,@function
10 remainder:
11         fldl 12(%esp)
12         fldl 4(%esp)
13 1:      fprem1
14         fstsw %ax
15         sahf
16         jp 1b
17         fstp %st(1)
18         ret