X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fnexttowardf.c;h=8648be6a684a669a2fd3a37784ccdac3733f060a;hb=594318fd3d13c7dda1ea87a76934e052ac74301f;hp=e8e6f67641ae672f9534f9dbe95b01f29f2ed53a;hpb=4e597feef0595caefa39ab43c813734a1244fa84;p=musl diff --git a/src/math/nexttowardf.c b/src/math/nexttowardf.c index e8e6f676..8648be6a 100644 --- a/src/math/nexttowardf.c +++ b/src/math/nexttowardf.c @@ -30,9 +30,7 @@ float nexttowardf(float x, long double 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; }