From: Alan Cox Date: Mon, 5 Mar 2018 20:26:54 +0000 (+0000) Subject: expm1: remove old STRICT_ASSIGN macro X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=cbb8b246e47d4344bb1edf6e7219490fdf9e003a;p=FUZIX.git expm1: remove old STRICT_ASSIGN macro --- diff --git a/Library/libs/expm1.c b/Library/libs/expm1.c index 42344060..44026313 100644 --- a/Library/libs/expm1.c +++ b/Library/libs/expm1.c @@ -170,7 +170,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 */ /* raise inexact flags when x != 0 */