From cbb8b246e47d4344bb1edf6e7219490fdf9e003a Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 5 Mar 2018 20:26:54 +0000 Subject: [PATCH] expm1: remove old STRICT_ASSIGN macro --- Library/libs/expm1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.34.1