Wed May 29 12:53:10 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
[glibc.git] / sysdeps / libm-i387 / s_tanf.S
blob32964341745fb92899c9f0ab959c048171ac5626
1 /*
2  * Written by J.T. Conklin <jtc@netbsd.org>.
3  * Public domain.
4  */
6 #include <machine/asm.h>
8 RCSID("$NetBSD: s_tanf.S,v 1.3 1995/05/09 00:31:09 jtc Exp $")
10 /* A float's domain isn't large enough to require argument reduction. */
11 ENTRY(__tanf)
12         flds    4(%esp)
13         fptan
14         fstp    %st(0)
15         ret
16 weak_alias (__tanf, tanf)