1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-09-04 02:42:02 +03:00

cbrtl-ieee: Work around test failure on IRIX 6.5.

* m4/cbrtl-ieee.m4: New file.
* m4/cbrtl.m4 (gl_FUNC_CBRTL): If gl_FUNC_CBRTL_IEEE is present,
test whether cbrtl works with a minus zero argument. Replace it if not.
* lib/math.in.h (cbrtl): Override if REPLACE_CBRTL is 1.
* m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_CBRTL.
* modules/math (Makefile.am): Substitute REPLACE_CBRTL.
* modules/cbrtl (configure.ac): Consider REPLACE_CBRTL.
(Depends-on): Update conditions.
* modules/cbrtl-ieee (Files): Add m4/cbrtl-ieee.m4, m4/minus-zero.m4,
m4/signbit.m4.
(configure.ac): Invoke gl_FUNC_CBRTL_IEEE.
* lib/cbrtl.c (cbrtl) [IRIX]: Avoid an unnecessary addition.
* doc/posix-functions/cbrtl.texi: Mention the cbrtl-ieee module.
This commit is contained in:
Bruno Haible
2012-03-01 04:54:18 +01:00
parent 5135f0da23
commit 8aa4d66e12
10 changed files with 118 additions and 12 deletions

View File

@@ -1,5 +1,20 @@
2012-02-29 Bruno Haible <bruno@clisp.org> 2012-02-29 Bruno Haible <bruno@clisp.org>
cbrtl-ieee: Work around test failure on IRIX 6.5.
* m4/cbrtl-ieee.m4: New file.
* m4/cbrtl.m4 (gl_FUNC_CBRTL): If gl_FUNC_CBRTL_IEEE is present,
test whether cbrtl works with a minus zero argument. Replace it if not.
* lib/math.in.h (cbrtl): Override if REPLACE_CBRTL is 1.
* m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_CBRTL.
* modules/math (Makefile.am): Substitute REPLACE_CBRTL.
* modules/cbrtl (configure.ac): Consider REPLACE_CBRTL.
(Depends-on): Update conditions.
* modules/cbrtl-ieee (Files): Add m4/cbrtl-ieee.m4, m4/minus-zero.m4,
m4/signbit.m4.
(configure.ac): Invoke gl_FUNC_CBRTL_IEEE.
* lib/cbrtl.c (cbrtl) [IRIX]: Avoid an unnecessary addition.
* doc/posix-functions/cbrtl.texi: Mention the cbrtl-ieee module.
Tests for module 'cbrtl-ieee'. Tests for module 'cbrtl-ieee'.
* modules/cbrtl-ieee-tests: New file. * modules/cbrtl-ieee-tests: New file.
* tests/test-cbrtl-ieee.c: New file. * tests/test-cbrtl-ieee.c: New file.

View File

@@ -4,9 +4,9 @@
POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cbrtl.html} POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cbrtl.html}
Gnulib module: cbrtl Gnulib module: cbrtl or cbrtl-ieee
Portability problems fixed by Gnulib: Portability problems fixed by either Gnulib module @code{cbrtl} or @code{cbrtl-ieee}
@itemize @itemize
@item @item
This function is missing on some platforms: This function is missing on some platforms:
@@ -16,6 +16,14 @@ This function is not declared on some platforms:
IRIX 6.5. IRIX 6.5.
@end itemize @end itemize
Portability problems fixed by Gnulib module @code{cbrtl-ieee}:
@itemize
@item
This function returns a positive zero for a minus zero argument
on some platforms:
IRIX 6.5.
@end itemize
Portability problems not fixed by Gnulib: Portability problems not fixed by Gnulib:
@itemize @itemize
@end itemize @end itemize

View File

@@ -140,7 +140,13 @@ cbrtl (long double x)
return x; return x;
} }
else else
return x + x; {
# ifdef __sgi /* so that when x == -0.0L, the result is -0.0L not +0.0L */
return x;
# else
return x + x;
# endif
}
} }
#endif #endif

View File

@@ -326,10 +326,19 @@ _GL_WARN_ON_USE (cbrt, "cbrt is unportable - "
#endif #endif
#if @GNULIB_CBRTL@ #if @GNULIB_CBRTL@
# if !@HAVE_DECL_CBRTL@ # if @REPLACE_CBRTL@
# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
# undef cbrtl
# define cbrtl rpl_cbrtl
# endif
_GL_FUNCDECL_RPL (cbrtl, long double, (long double x));
_GL_CXXALIAS_RPL (cbrtl, long double, (long double x));
# else
# if !@HAVE_DECL_CBRTL@
_GL_FUNCDECL_SYS (cbrtl, long double, (long double x)); _GL_FUNCDECL_SYS (cbrtl, long double, (long double x));
# endif # endif
_GL_CXXALIAS_SYS (cbrtl, long double, (long double x)); _GL_CXXALIAS_SYS (cbrtl, long double, (long double x));
# endif
_GL_CXXALIASWARN (cbrtl); _GL_CXXALIASWARN (cbrtl);
#elif defined GNULIB_POSIXCHECK #elif defined GNULIB_POSIXCHECK
# undef cbrtl # undef cbrtl

15
m4/cbrtl-ieee.m4 Normal file
View File

@@ -0,0 +1,15 @@
# cbrtl-ieee.m4 serial 1
dnl Copyright (C) 2012 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
dnl This macro is in a separate file (not in cbrtl.m4 and not inlined in the
dnl module description), so that gl_FUNC_CBRTL can test whether 'aclocal' has
dnl found uses of this macro.
AC_DEFUN([gl_FUNC_CBRTL_IEEE],
[
m4_divert_text([INIT_PREPARE], [gl_cbrtl_required=ieee])
AC_REQUIRE([gl_FUNC_CBRTL])
])

View File

@@ -1,4 +1,4 @@
# cbrtl.m4 serial 1 # cbrtl.m4 serial 2
dnl Copyright (C) 2012 Free Software Foundation, Inc. dnl Copyright (C) 2012 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it, dnl gives unlimited permission to copy and/or distribute it,
@@ -6,6 +6,7 @@ dnl with or without modifications, as long as this notice is preserved.
AC_DEFUN([gl_FUNC_CBRTL], AC_DEFUN([gl_FUNC_CBRTL],
[ [
m4_divert_text([DEFAULTS], [gl_cbrtl_required=plain])
AC_REQUIRE([gl_MATH_H_DEFAULTS]) AC_REQUIRE([gl_MATH_H_DEFAULTS])
AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE]) AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
AC_REQUIRE([gl_FUNC_CBRT]) AC_REQUIRE([gl_FUNC_CBRT])
@@ -21,9 +22,55 @@ AC_DEFUN([gl_FUNC_CBRTL],
dnl Also check whether it's declared. dnl Also check whether it's declared.
dnl IRIX 6.5 has cbrtl() in libm but doesn't declare it in <math.h>. dnl IRIX 6.5 has cbrtl() in libm but doesn't declare it in <math.h>.
AC_CHECK_DECL([cbrtl], , [HAVE_DECL_CBRTL=0], [[#include <math.h>]]) AC_CHECK_DECL([cbrtl], , [HAVE_DECL_CBRTL=0], [[#include <math.h>]])
m4_ifdef([gl_FUNC_CBRTL_IEEE], [
if test $gl_cbrtl_required = ieee && test $REPLACE_CBRTL = 0; then
AC_CACHE_CHECK([whether cbrtl works according to ISO C 99 with IEC 60559],
[gl_cv_func_cbrtl_ieee],
[
save_LIBS="$LIBS"
LIBS="$LIBS $CBRTL_LIBM"
AC_RUN_IFELSE(
[AC_LANG_SOURCE([[
#ifndef __NO_MATH_INLINES
# define __NO_MATH_INLINES 1 /* for glibc */
#endif
#include <math.h>
]gl_LONG_DOUBLE_MINUS_ZERO_CODE[
]gl_LONG_DOUBLE_SIGNBIT_CODE[
static long double dummy (long double x) { return 0; }
int main (int argc, char *argv[])
{
extern
#ifdef __cplusplus
"C"
#endif
long double cbrtl (long double);
long double (*my_cbrtl) (long double) = argc ? cbrtl : dummy;
long double f;
/* Test cbrtl(-0.0).
This test fails on IRIX 6.5. */
f = my_cbrtl (minus_zerol);
if (!(f == 0.0L) || (signbitl (minus_zerol) && !signbitl (f)))
return 1;
return 0;
}
]])],
[gl_cv_func_cbrtl_ieee=yes],
[gl_cv_func_cbrtl_ieee=no],
[gl_cv_func_cbrtl_ieee="guessing no"])
LIBS="$save_LIBS"
])
case "$gl_cv_func_cbrtl_ieee" in
*yes) ;;
*) REPLACE_CBRTL=1 ;;
esac
fi
])
else else
HAVE_CBRTL=0 HAVE_CBRTL=0
HAVE_DECL_CBRTL=0 HAVE_DECL_CBRTL=0
fi
if test $HAVE_CBRTL = 0 || test $REPLACE_CBRTL = 1; then
dnl Find libraries needed to link lib/cbrtl.c. dnl Find libraries needed to link lib/cbrtl.c.
if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1; then if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1; then
CBRTL_LIBM="$CBRT_LIBM" CBRTL_LIBM="$CBRT_LIBM"

View File

@@ -1,4 +1,4 @@
# math_h.m4 serial 78 # math_h.m4 serial 79
dnl Copyright (C) 2007-2012 Free Software Foundation, Inc. dnl Copyright (C) 2007-2012 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it, dnl gives unlimited permission to copy and/or distribute it,
@@ -217,6 +217,7 @@ AC_DEFUN([gl_MATH_H_DEFAULTS],
HAVE_DECL_TRUNCF=1; AC_SUBST([HAVE_DECL_TRUNCF]) HAVE_DECL_TRUNCF=1; AC_SUBST([HAVE_DECL_TRUNCF])
HAVE_DECL_TRUNCL=1; AC_SUBST([HAVE_DECL_TRUNCL]) HAVE_DECL_TRUNCL=1; AC_SUBST([HAVE_DECL_TRUNCL])
REPLACE_CBRTF=0; AC_SUBST([REPLACE_CBRTF]) REPLACE_CBRTF=0; AC_SUBST([REPLACE_CBRTF])
REPLACE_CBRTL=0; AC_SUBST([REPLACE_CBRTL])
REPLACE_CEIL=0; AC_SUBST([REPLACE_CEIL]) REPLACE_CEIL=0; AC_SUBST([REPLACE_CEIL])
REPLACE_CEILF=0; AC_SUBST([REPLACE_CEILF]) REPLACE_CEILF=0; AC_SUBST([REPLACE_CEILF])
REPLACE_CEILL=0; AC_SUBST([REPLACE_CEILL]) REPLACE_CEILL=0; AC_SUBST([REPLACE_CEILL])

View File

@@ -9,14 +9,14 @@ m4/mathfunc.m4
Depends-on: Depends-on:
math math
cbrt [test $HAVE_CBRTL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1] cbrt [{ test $HAVE_CBRTL = 0 || test $REPLACE_CBRTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1]
isfinite [test $HAVE_CBRTL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0] isfinite [{ test $HAVE_CBRTL = 0 || test $REPLACE_CBRTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
frexpl [test $HAVE_CBRTL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0] frexpl [{ test $HAVE_CBRTL = 0 || test $REPLACE_CBRTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
ldexpl [test $HAVE_CBRTL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0] ldexpl [{ test $HAVE_CBRTL = 0 || test $REPLACE_CBRTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
configure.ac: configure.ac:
gl_FUNC_CBRTL gl_FUNC_CBRTL
if test $HAVE_CBRTL = 0; then if test $HAVE_CBRTL = 0 || test $REPLACE_CBRTL = 1; then
AC_LIBOBJ([cbrtl]) AC_LIBOBJ([cbrtl])
fi fi
gl_MATH_MODULE_INDICATOR([cbrtl]) gl_MATH_MODULE_INDICATOR([cbrtl])

View File

@@ -2,12 +2,16 @@ Description:
cbrtl() function according to ISO C 99 with IEC 60559. cbrtl() function according to ISO C 99 with IEC 60559.
Files: Files:
m4/cbrtl-ieee.m4
m4/minus-zero.m4
m4/signbit.m4
Depends-on: Depends-on:
cbrtl cbrtl
fpieee fpieee
configure.ac: configure.ac:
gl_FUNC_CBRTL_IEEE
Makefile.am: Makefile.am:

View File

@@ -186,6 +186,7 @@ math.h: math.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(
-e 's|@''HAVE_DECL_TRUNCL''@|$(HAVE_DECL_TRUNCL)|g' \ -e 's|@''HAVE_DECL_TRUNCL''@|$(HAVE_DECL_TRUNCL)|g' \
| \ | \
sed -e 's|@''REPLACE_CBRTF''@|$(REPLACE_CBRTF)|g' \ sed -e 's|@''REPLACE_CBRTF''@|$(REPLACE_CBRTF)|g' \
-e 's|@''REPLACE_CBRTL''@|$(REPLACE_CBRTL)|g' \
-e 's|@''REPLACE_CEIL''@|$(REPLACE_CEIL)|g' \ -e 's|@''REPLACE_CEIL''@|$(REPLACE_CEIL)|g' \
-e 's|@''REPLACE_CEILF''@|$(REPLACE_CEILF)|g' \ -e 's|@''REPLACE_CEILF''@|$(REPLACE_CEILF)|g' \
-e 's|@''REPLACE_CEILL''@|$(REPLACE_CEILL)|g' \ -e 's|@''REPLACE_CEILL''@|$(REPLACE_CEILL)|g' \