about summary refs log tree commit diff
path: root/sysdeps/x86_64/fpu/e_fmodl.S
blob: d754668bce5940c03cf607890185057055037668 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Public domain.
 *
 */

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

RCSID("$NetBSD: $")

ENTRY(__ieee754_fmodl)
	fldt	24(%rsp)
	fldt	8(%rsp)
1:	fprem
	fstsw	%ax
	and	$04,%ah
	jnz	1b
	fstp	%st(1)
	ret
END (__ieee754_fmodl)
libm_alias_finite (__ieee754_fmodl, __fmodl)