mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-20 12:00:06 +00:00
17 lines
313 B
ArmAsm
17 lines
313 B
ArmAsm
|
/*
|
||
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
||
|
* Public domain.
|
||
|
*/
|
||
|
|
||
|
#include <machine/asm.h>
|
||
|
|
||
|
RCSID("$NetBSD: s_tanf.S,v 1.3 1995/05/09 00:31:09 jtc Exp $")
|
||
|
|
||
|
/* A float's domain isn't large enough to require argument reduction. */
|
||
|
ENTRY(__tanf)
|
||
|
flds 4(%esp)
|
||
|
fptan
|
||
|
fstp %st(0)
|
||
|
ret
|
||
|
weak_alias (__tanf, tanf)
|