about summary refs log tree commit diff
path: root/math/w_log2f.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_log2f.c')
-rw-r--r--math/w_log2f.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_log2f.c b/math/w_log2f.c
index 6d91bf4e7a..6963ed2119 100644
--- a/math/w_log2f.c
+++ b/math/w_log2f.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,7 @@
 float
 __log2f (float x)
 {
-  if (__builtin_expect (x <= 0.0f, 0) && _LIB_VERSION != _IEEE_)
+  if (__builtin_expect (islessequal (x, 0.0f), 0) && _LIB_VERSION != _IEEE_)
     {
       if (x == 0.0)
 	{