X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fmath%2Fnextafterf.c;fp=src%2Fmath%2Fnextafterf.c;h=47775b92fd1db2c9c211fe0ea156d9ba10dc2276;hp=4727f7b0385141f1d6221e763cbb48b496f5220e;hb=4e597feef0595caefa39ab43c813734a1244fa84;hpb=a3b20f67b35e26813d02e08043db2a5d9263f255 diff --git a/src/math/nextafterf.c b/src/math/nextafterf.c index 4727f7b0..47775b92 100644 --- a/src/math/nextafterf.c +++ b/src/math/nextafterf.c @@ -29,7 +29,8 @@ float nextafterf(float x, float y) return x + x; /* raise underflow if ux.value is subnormal or zero */ if (e == 0) { - volatile float z = x*x + ux.value*ux.value; + volatile float z; + z = x*x + ux.value*ux.value; } return ux.value; }