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