X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fasinhl.c;h=3ea887455925f1098dafb4cce417ecf056dacabe;hb=5652d70054daf3c2c9b6d475fdf9d24a940e51aa;hp=db9662468ac244db9c81346d03f12cf2fe2a1ec6;hpb=969ddbc423238291d5c7982790bbe72720627ba4;p=musl diff --git a/src/math/asinhl.c b/src/math/asinhl.c index db966246..3ea88745 100644 --- a/src/math/asinhl.c +++ b/src/math/asinhl.c @@ -31,7 +31,7 @@ long double asinhl(long double x) x = log1pl(x + x*x/(sqrtl(x*x+1)+1)); } else { /* |x| < 0x1p-32, raise inexact if x!=0 */ - FORCE_EVAL(x + 0x1p1000); + FORCE_EVAL(x + 0x1p120f); } return s ? -x : x; }