mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-16 18:10:11 +00:00
17 lines
312 B
ArmAsm
17 lines
312 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
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
|
|
END (__sinf)
|
|
weak_alias (__sinf, sinf)
|