diff options
Diffstat (limited to 'libm/s_expm1.c')
-rw-r--r-- | libm/s_expm1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libm/s_expm1.c b/libm/s_expm1.c index f54fa91f4..301416be2 100644 --- a/libm/s_expm1.c +++ b/libm/s_expm1.c @@ -198,9 +198,10 @@ Q5 = -2.01099218183624371326e-07; /* BE8AFDB7 6E09C32D */ e = (x*(e-c)-c); e -= hxs; if(k== -1) return 0.5*(x-e)-0.5; - if(k==1) + if(k==1) { if(x < -0.25) return -2.0*(e-(x+0.5)); else return one+2.0*(x-e); + } if (k <= -2 || k>56) { /* suffice to return exp(x)-1 */ u_int32_t high; y = one-(e-x); |