diff options
Diffstat (limited to 'sysdeps/generic/w_cosh.c')
-rw-r--r-- | sysdeps/generic/w_cosh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/generic/w_cosh.c b/sysdeps/generic/w_cosh.c index 8db25c868c..709f485c6d 100644 --- a/sysdeps/generic/w_cosh.c +++ b/sysdeps/generic/w_cosh.c @@ -34,7 +34,7 @@ static char rcsid[] = "$NetBSD: w_cosh.c,v 1.6 1995/05/10 20:48:47 jtc Exp $"; double z; z = __ieee754_cosh(x); if(_LIB_VERSION == _IEEE_ || __isnan(x)) return z; - if(fabs(x)>7.10475860073943863426e+02) { + if(!__finite(z) && __finite(x)) { return __kernel_standard(x,x,5); /* cosh overflow */ } else return z; |