X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fexpm1f.c;h=297e0b44a2ebcc99d406bc7641d1fbf8aa76b097;hb=0c8bc102f287d3993751d80ba2dffb01e0c8bc7f;hp=698ab45f40a5c6a077f43aa9eefd8320f84224c5;hpb=39c910fb061114e6aa5c3bf2c94b1d7262d62221;p=musl diff --git a/src/math/expm1f.c b/src/math/expm1f.c index 698ab45f..297e0b44 100644 --- a/src/math/expm1f.c +++ b/src/math/expm1f.c @@ -65,7 +65,7 @@ float expm1f(float x) hi = x - t*ln2_hi; /* t*ln2_hi is exact here */ lo = t*ln2_lo; } - STRICT_ASSIGN(float, x, hi - lo); + x = hi-lo; c = (hi-x)-lo; } else if (hx < 0x33000000) { /* when |x|<2**-25, return x */ if (hx < 0x00800000)