summaryrefslogtreecommitdiff
path: root/src/math/nextafter.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/nextafter.c')
-rw-r--r--src/math/nextafter.c3
1 files changed, 2 insertions, 1 deletions
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;
}