summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_tan.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/s_tan.c')
-rw-r--r--lib/msun/src/s_tan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/s_tan.c b/lib/msun/src/s_tan.c
index bd62789..196c27e 100644
--- a/lib/msun/src/s_tan.c
+++ b/lib/msun/src/s_tan.c
@@ -62,7 +62,7 @@ tan(double x)
/* |x| ~< pi/4 */
ix &= 0x7fffffff;
if(ix <= 0x3fe921fb) {
- if(ix<0x3e300000) /* x < 2**-28 */
+ if(ix<0x3e400000) /* x < 2**-27 */
if((int)x==0) return x; /* generate inexact */
return __kernel_tan(x,z,1);
}
OpenPOWER on IntegriCloud