diff options
Diffstat (limited to 'math/w_j1.c')
-rw-r--r-- | math/w_j1.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/math/w_j1.c b/math/w_j1.c index 358e0e192b..e9a5357b76 100644 --- a/math/w_j1.c +++ b/math/w_j1.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 <drepper@gmail.com>, 2011. @@ -25,7 +25,8 @@ double j1 (double x) { - if (__builtin_expect (fabs (x) > X_TLOSS, 0) && _LIB_VERSION != _IEEE_) + if (__builtin_expect (isgreater (fabs (x), X_TLOSS), 0) + && _LIB_VERSION != _IEEE_) /* j1(|x|>X_TLOSS) */ return __kernel_standard (x, x, 36); @@ -40,7 +41,8 @@ strong_alias (j1, j1l) double y1 (double x) { - if (__builtin_expect (x <= 0.0 || x > X_TLOSS, 0) && _LIB_VERSION != _IEEE_) + if (__builtin_expect (islessequal (x, 0.0) || isgreater (x, X_TLOSS), 0) + && _LIB_VERSION != _IEEE_) { if (x < 0.0) { |