(_ISwbit): Protext use of parameter with parentheses.
[glibc.git] / sysdeps / libm-i387 / s_tanf.S
blob7a7509119b9f3546e8ef46ee376b5d82d124c2ef
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 END (__tanf)
17 weak_alias (__tanf, tanf)