20067523af
math routines that appear to be (a) correct and (b) faster than their MI counterparts on my Pentium 4. Obtained from: NetBSD
16 lines
300 B
ArmAsm
16 lines
300 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
/* RCSID("$NetBSD: s_sinf.S,v 1.3 1995/05/09 00:27:53 jtc Exp $") */
|
|
|
|
/* A float's domain isn't large enough to require argument reduction. */
|
|
ENTRY(sinf)
|
|
flds 4(%esp)
|
|
fsin
|
|
ret
|