author | Rich Felker <dalias@aerifal.cx> | 2012年05月06日 14:48:20 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012年05月06日 14:48:20 -0400 |
commit | 4e597feef0595caefa39ab43c813734a1244fa84 (patch) | |
tree | 8f9b38b0792c11b0c144f5e2cbe7916be63532f6 /src/math/nextafter.c | |
parent | a3b20f67b35e26813d02e08043db2a5d9263f255 (diff) | |
download | musl-4e597feef0595caefa39ab43c813734a1244fa84.tar.gz |
-rw-r--r-- | src/math/nextafter.c | 3 |
diff --git a/src/math/nextafter.c b/src/math/nextafter.c index d9e29236..e4bfb022 100644 --- a/src/math/nextafter.c +++ b/src/math/nextafter.c @@ -30,7 +30,8 @@ double nextafter(double x, double y) return x + x; /* raise underflow if ux.value is subnormal or zero */ if (e == 0) { - volatile double z = x*x + ux.value*ux.value; + volatile double z; + z = x*x + ux.value*ux.value; } return ux.value; } |