From 92221550d72bafcd322ac5ab2a951054184b7f1a Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Sun, 19 Feb 2012 11:20:18 +0100 Subject: Use non-signaling floating-point comparisons in math functions. --- math/w_sqrtl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'math/w_sqrtl.c') diff --git a/math/w_sqrtl.c b/math/w_sqrtl.c index 5e18f44c32..2a4a0481b0 100644 --- a/math/w_sqrtl.c +++ b/math/w_sqrtl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011 Free Software Foundation, Inc. +/* Copyright (C) 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. @@ -24,7 +24,7 @@ long double __sqrtl (long double x) { - if (__builtin_expect (x < 0.0L, 0) && _LIB_VERSION != _IEEE_) + if (__builtin_expect (isless (x, 0.0L), 0) && _LIB_VERSION != _IEEE_) return __kernel_standard (x, x, 226); /* sqrt(negative) */ return __ieee754_sqrtl (x); -- cgit v1.2.3