diff options
Diffstat (limited to 'sysdeps/libm-ieee754/e_sinhl.c')
-rw-r--r-- | sysdeps/libm-ieee754/e_sinhl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/libm-ieee754/e_sinhl.c b/sysdeps/libm-ieee754/e_sinhl.c index 2d98562f94..f9ccc6fa90 100644 --- a/sysdeps/libm-ieee754/e_sinhl.c +++ b/sysdeps/libm-ieee754/e_sinhl.c @@ -77,7 +77,7 @@ static long double one = 1.0, shuge = 1.0e4931L; if (ix < 0x400c || (ix == 0x400c && i0 < 0xb17217f7)) return h*__ieee754_expl(fabsl(x)); - /* |x| in [log(maxdouble), overflowthresold] */ + /* |x| in [log(maxdouble), overflowthreshold] */ if (ix<0x400c || (ix == 0x400c && (i0 < 0xb174ddc0 || (i0 == 0xb174ddc0 && i1 <= 0x31aec0ea)))) { @@ -86,6 +86,6 @@ static long double one = 1.0, shuge = 1.0e4931L; return t*w; } - /* |x| > overflowthresold, sinhl(x) overflow */ + /* |x| > overflowthreshold, sinhl(x) overflow */ return x*shuge; } |