X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fmath%2Fasinhl.c;h=3ea887455925f1098dafb4cce417ecf056dacabe;hp=db9662468ac244db9c81346d03f12cf2fe2a1ec6;hb=c6383b7b10303457306932584fc23f24b5153a81;hpb=d8a7619e371ff0f226200f6316abb46dd1192f3d 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; }