about summary refs log tree commit diff
path: root/math/w_acosf.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_acosf.c')
-rw-r--r--math/w_acosf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/math/w_acosf.c b/math/w_acosf.c
index 0e41a2c47b..2500a7d774 100644
--- a/math/w_acosf.c
+++ b/math/w_acosf.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 @@
 float
 __acosf (float x)
 {
-  if (__builtin_expect (fabsf (x) > 1.0f, 0) && _LIB_VERSION != _IEEE_)
+  if (__builtin_expect (isgreater (fabsf (x), 1.0f), 0)
+      && _LIB_VERSION != _IEEE_)
     {
       /* acos(|x|>1) */
       feraiseexcept (FE_INVALID);