Mon Dec 2 15:32:15 1996 Ulrich Drepper <drepper@cygnus.com>
[glibc.git] / sysdeps / libm-i387 / s_tanf.S
blobcbf8dd8496f291e7c5016e957bcd0a64c814c11f
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 PSEUDO_END (__tanf)
17 weak_alias (__tanf, tanf)