expm1: remove old STRICT_ASSIGN macro
authorAlan Cox <alan@linux.intel.com>
Mon, 5 Mar 2018 20:26:54 +0000 (20:26 +0000)
committerAlan Cox <alan@linux.intel.com>
Mon, 5 Mar 2018 20:26:54 +0000 (20:26 +0000)
Library/libs/expm1.c

index 4234406..4402631 100644 (file)
@@ -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 */