xref: /haiku/src/system/libroot/posix/musl/math/x86/remainder.s (revision f504f61099b010fbfa94b1cc63d2e9072c7f7185)
1.global remainder
2.type remainder,@function
3remainder:
4.weak drem
5.type drem,@function
6drem:
7	fldl 12(%esp)
8	fldl 4(%esp)
91:	fprem1
10	fnstsw %ax
11	sahf
12	jp 1b
13	fstp %st(1)
14	ret
15