summaryrefslogtreecommitdiff
path: root/sysdeps/libm-i387/e_fmodl.S
blob: 8c2bd06b0a3b0717c7bece913baa53a010029246 (plain)
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>

RCSID("$NetBSD: $")

ENTRY(__ieee754_fmodl)
	fldt	16(%esp)
	fldt	4(%esp)
1:	fprem
	fstsw	%ax
	sahf
	jp	1b
	fstpl	%st(1)
	ret
PSEUDO_END (__ieee754_fmodl)