clock_gettime: add support for 32-bit vdso with 64-bit time_t
[musl] / src / math / expm1f.c
index 698ab45..297e0b4 100644 (file)
@@ -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)