X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fmath%2Fasinh.c;h=0829f228ef9d2540578c6512736c107b25c2bc06;hp=4152dc39916d5fa502b0e1d3ae0eadaa3405f93c;hb=c6383b7b10303457306932584fc23f24b5153a81;hpb=482ccd2f7497a79ca83e998f54e823e7cedaaa6e diff --git a/src/math/asinh.c b/src/math/asinh.c index 4152dc39..0829f228 100644 --- a/src/math/asinh.c +++ b/src/math/asinh.c @@ -22,7 +22,7 @@ double asinh(double x) x = log1p(x + x*x/(sqrt(x*x+1)+1)); } else { /* |x| < 0x1p-26, raise inexact if x != 0 */ - FORCE_EVAL(x + 0x1p1000); + FORCE_EVAL(x + 0x1p120f); } return s ? -x : x; }