add FORCE_EVAL macro to evaluate float expr for their side effect
[musl] / src / math / nextafter.c
index e4bfb02..a3b42c9 100644 (file)
@@ -29,9 +29,7 @@ double nextafter(double x, double y)
        if (e == 0x7ff)
                return x + x;
        /* raise underflow if ux.value is subnormal or zero */
-       if (e == 0) {
-               volatile double z;
-               z = x*x + ux.value*ux.value;
-       }
+       if (e == 0)
+               FORCE_EVAL(x*x + ux.value*ux.value);
        return ux.value;
 }