about summary refs log tree commit diff
path: root/sysdeps/i386/fpu/e_remainderl.S
blob: 551660c1e973cfb84e5d875edfa181887f6ea826 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Written by J.T. Conklin <jtc@netbsd.org>.
 * Public domain.
 *
 * Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
 */

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

ENTRY(__ieee754_remainderl)
	fldt	16(%esp)
	fldt	4(%esp)
1:	fprem1
	fstsw	%ax
	sahf
	jp	1b
	fstp	%st(1)
	ret
END (__ieee754_remainderl)
libm_alias_finite (__ieee754_remainderl, __remainderl)