X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fmath%2Fnexttoward.c;h=43f8fee8decc33efa08bb168d187445e36023ba1;hp=741b6b5fefe122cd2f82a332f49d742c51277bc7;hb=4e597feef0595caefa39ab43c813734a1244fa84;hpb=6cf865dba69bab6346dc268d9173609af36b984e diff --git a/src/math/nexttoward.c b/src/math/nexttoward.c index 741b6b5f..43f8fee8 100644 --- a/src/math/nexttoward.c +++ b/src/math/nexttoward.c @@ -39,7 +39,8 @@ double nexttoward(double x, long double 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; }