0ac5ae2335
libm is now somewhat integrated with gcc's -ffinite-math-only option and lots of the wrapper functions have been optimized.
24 lines
424 B
ArmAsm
24 lines
424 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*
|
|
* Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
|
|
* Adapted for x86-64 by Andreas Jaeger <aj@suse.de>.
|
|
*/
|
|
|
|
#include <machine/asm.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)
|
|
strong_alias (__ieee754_fmodl, __fmodl_finite)
|