1 /* sf_tan.c -- float version of s_tan.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
13 * ====================================================
32 if(ix
<= 0x3f490fda) return __kernel_tanf(x
,z
,1);
34 /* tan(Inf or NaN) is NaN */
35 else if (!FLT_UWORD_IS_FINITE(ix
)) return x
-x
; /* NaN */
37 /* argument reduction needed */
39 n
= __ieee754_rem_pio2f(x
,y
);
40 return __kernel_tanf(y
[0],y
[1],1-((n
&1)<<1)); /* 1 -- n even
45 #ifdef _DOUBLE_IS_32BITS
54 return (double) tanf((float) x
);
57 #endif /* defined(_DOUBLE_IS_32BITS) */