]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/libm-i387/s_tanf.S
update from main archive 961005
[thirdparty/glibc.git] / sysdeps / libm-i387 / s_tanf.S
1 /*
2 * Written by J.T. Conklin <jtc@netbsd.org>.
3 * Public domain.
4 */
5
6 #include <machine/asm.h>
7
8 RCSID("$NetBSD: s_tanf.S,v 1.3 1995/05/09 00:31:09 jtc Exp $")
9
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)