From 6ab8136b4477fd75381c06fa0e7fa93c89c712a1 Mon Sep 17 00:00:00 2001 From: nsz Date: Sun, 6 May 2012 21:24:28 +0200 Subject: add FORCE_EVAL macro to evaluate float expr for their side effect updated nextafter* to use FORCE_EVAL, it can be used in many other places in the math code to improve readability. --- src/math/nexttowardf.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/math/nexttowardf.c') 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; } -- cgit v1.2.1