X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fexpm1.c;h=ac1e61e4f7f6a0d09651c814f7885cc6f25b163a;hb=2a3210cf4abff0a69ff3e7adc66591dfe6ab2197;hp=a7eb2c0bd51a3006fe7ee588bd8a3fbb12bed216;hpb=39c910fb061114e6aa5c3bf2c94b1d7262d62221;p=musl diff --git a/src/math/expm1.c b/src/math/expm1.c index a7eb2c0b..ac1e61e4 100644 --- a/src/math/expm1.c +++ b/src/math/expm1.c @@ -155,7 +155,7 @@ double expm1(double x) hi = x - t*ln2_hi; /* t*ln2_hi is exact here */ lo = t*ln2_lo; } - STRICT_ASSIGN(double, x, hi - lo); + x = hi-lo; c = (hi-x)-lo; } else if (hx < 0x3c900000) { /* |x| < 2**-54, return x */ if (hx < 0x00100000)