From 804791474dc1f0904f6d91ef66dbbbc322991e0b Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 26 Oct 2011 11:37:08 +0200 Subject: Fix uses of math_force_eval --- sysdeps/ieee754/dbl-64/s_round.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sysdeps/ieee754/dbl-64') diff --git a/sysdeps/ieee754/dbl-64/s_round.c b/sysdeps/ieee754/dbl-64/s_round.c index f8a38163fc..74461967fc 100644 --- a/sysdeps/ieee754/dbl-64/s_round.c +++ b/sysdeps/ieee754/dbl-64/s_round.c @@ -38,7 +38,7 @@ __round (double x) { if (j0 < 0) { - math_force_eval (huge + x > 0.0); + math_force_eval (huge + x); i0 &= 0x80000000; if (j0 == -1) @@ -51,7 +51,7 @@ __round (double x) if (((i0 & i) | i1) == 0) /* X is integral. */ return x; - math_force_eval (huge + x > 0.0); + math_force_eval (huge + x); /* Raise inexact if x != 0. */ i0 += 0x00080000 >> j0; @@ -74,7 +74,7 @@ __round (double x) /* X is integral. */ return x; - math_force_eval (huge + x > 0.0); + math_force_eval (huge + x); /* Raise inexact if x != 0. */ u_int32_t j = i1 + (1 << (51 - j0)); -- cgit 1.4.1