mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-17 10:30:20 +00:00
18 lines
326 B
ArmAsm
18 lines
326 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
|
|
END (__tanf)
|
|
weak_alias (__tanf, tanf)
|