about summary refs log tree commit diff
path: root/math/w_asinl.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_asinl.c')
-rw-r--r--math/w_asinl.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/math/w_asinl.c b/math/w_asinl.c
index 32e5273375..e4036d8806 100644
--- a/math/w_asinl.c
+++ b/math/w_asinl.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 @@
 long double
 __asinl (long double x)
 {
-  if (__builtin_expect (fabsl (x) > 1.0L, 0) && _LIB_VERSION != _IEEE_)
+  if (__builtin_expect (isgreater (fabsl (x), 1.0L), 0)
+      && _LIB_VERSION != _IEEE_)
     {
       /* asin(|x|>1) */
       feraiseexcept (FE_INVALID);