ceilf-ieee: Work around bug on AIX 7.1.
authorBruno Haible <bruno@clisp.org>
Sun, 19 Jun 2011 09:54:43 +0000 (11:54 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 19 Jun 2011 09:54:43 +0000 (11:54 +0200)
* m4/ceilf.m4 (gl_FUNC_CEILF): Test also the sign of ceilf (-0.3f).
* doc/posix-functions/ceilf.texi: Mention the AIX 7.1 problem.

ChangeLog
doc/posix-functions/ceilf.texi
m4/ceilf.m4

index 1c0136a24bfd02b5f92709cbd5f5ed91a2e55db3..6509252128990acf5be49ca1977b7c89dafc9b60 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-06-19  Bruno Haible  <bruno@clisp.org>
+
+       ceilf-ieee: Work around bug on AIX 7.1.
+       * m4/ceilf.m4 (gl_FUNC_CEILF): Test also the sign of ceilf (-0.3f).
+       * doc/posix-functions/ceilf.texi: Mention the AIX 7.1 problem.
+
 2011-06-19  Bruno Haible  <bruno@clisp.org>
 
        ceil-ieee: Work around bug on AIX 7.1.
index cc85fc8b55e0d42d5b412393df0d1b00f3aab275..0cd6d87f9a10a23141704c865f22eecef2226dd5 100644 (file)
@@ -16,6 +16,10 @@ AIX 5.1, HP-UX 11, Solaris 9.
 Portability problems fixed by Gnulib module @code{ceilf-ieee}:
 @itemize
 @item
+This function returns a positive zero for an argument between -1 and 0
+on some platforms:
+AIX 7.1.
+@item
 This function returns a positive zero for a minus zero argument
 on some platforms:
 OSF/1 5.1.
index 9161a513bfbe628d735d5c53e5da3824950a6a4b..66bac6948ca06854ace2fdafdc7b8924f56f5071 100644 (file)
@@ -1,4 +1,4 @@
-# ceilf.m4 serial 9
+# ceilf.m4 serial 10
 dnl Copyright (C) 2007, 2009-2011 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -37,10 +37,14 @@ AC_DEFUN([gl_FUNC_CEILF],
 ]gl_FLOAT_SIGNBIT_CODE[
 int main()
 {
+  int result = 0;
   /* Test whether ceilf (-0.0f) is -0.0f.  */
   if (signbitf (minus_zerof) && !signbitf (ceilf (minus_zerof)))
-    return 1;
-  return 0;
+    result |= 1;
+  /* Test whether ceilf (-0.3f) is -0.0f.  */
+  if (signbitf (-0.3f) && !signbitf (ceilf (-0.3f)))
+    result |= 2;
+  return result;
 }
               ]])],
               [gl_cv_func_ceilf_ieee=yes],