diff options
Diffstat (limited to 'sysdeps/libm-ieee754/e_sinh.c')
-rw-r--r-- | sysdeps/libm-ieee754/e_sinh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/libm-ieee754/e_sinh.c b/sysdeps/libm-ieee754/e_sinh.c index 1b37256687..1701b9bb67 100644 --- a/sysdeps/libm-ieee754/e_sinh.c +++ b/sysdeps/libm-ieee754/e_sinh.c @@ -71,11 +71,11 @@ static double one = 1.0, shuge = 1.0e307; } /* |x| in [22, log(maxdouble)] return 0.5*exp(|x|) */ - if (ix < 0x40862E42) return h*__ieee754_exp(fabs(x)); + if (ix < 0x40862e42) return h*__ieee754_exp(fabs(x)); /* |x| in [log(maxdouble), overflowthresold] */ GET_LOW_WORD(lx,x); - if (ix<0x408633CE || (ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d)) { + if (ix<0x408633ce || ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) { w = __ieee754_exp(0.5*fabs(x)); t = h*w; return t*w; |