about summary refs log tree commit diff
path: root/sysdeps/i386/fpu/e_remainderf.S
blob: 2257db35803c47d4b3668d4bde3a43735474196d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Written by J.T. Conklin <jtc@netbsd.org>.
 * Public domain.
 */

#include <machine/asm.h>
#include <libm-alias-finite.h>

ENTRY(__ieee754_remainderf)
	flds	8(%esp)
	flds	4(%esp)
1:	fprem1
	fstsw	%ax
	sahf
	jp	1b
	fstp	%st(1)
	ret
END (__ieee754_remainderf)
libm_alias_finite (__ieee754_remainderf, __remainderf)