diff options
author | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-09 18:47:11 +0000 |
---|---|---|
committer | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-09 18:47:11 +0000 |
commit | 7e65c779b367025ac57db99cec3d745350a6783a (patch) | |
tree | b0229dad035aa2b5e40711de60b627e662093e81 /libgfortran/configure.ac | |
parent | f1453e14784249e1f513ef104973a7ef71b69e78 (diff) | |
download | ppe42-gcc-7e65c779b367025ac57db99cec3d745350a6783a.tar.gz ppe42-gcc-7e65c779b367025ac57db99cec3d745350a6783a.zip |
* acinclude.m4 (LIBGFOR_CHECK_FOR_BROKEN_ISFINITE,
LIBGFOR_CHECK_FOR_BROKEN_ISNAN,
LIBGFOR_CHECK_FOR_BROKEN_FPCLASSIFY): Remove.
* configure.ac: Remove above checks.
* libgfortran.h: Define isnan, isinf, isfinite, isnormal and
signbit in terms of the respective built-ins.
* io/write_float.def (WRITE_FLOAT): Use signbit() instead of
__builtin_signbit().
* intrinsics/c99_functions.c (tgamma): Use isnan() instead of
__builtin_isnan().
* config.h.in: Regenerate.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164119 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/configure.ac')
-rw-r--r-- | libgfortran/configure.ac | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libgfortran/configure.ac b/libgfortran/configure.ac index 8b9ac74c16a..e5517a19587 100644 --- a/libgfortran/configure.ac +++ b/libgfortran/configure.ac @@ -450,15 +450,6 @@ AC_CHECK_LIB([m],[catanl],[AC_DEFINE([HAVE_CATANL],[1],[libm includes catanl])]) # On AIX, clog is present in libm as __clog AC_CHECK_LIB([m],[__clog],[AC_DEFINE([HAVE_CLOG],[1],[libm includes clog])]) -# Check for a isfinite macro that works on long doubles. -LIBGFOR_CHECK_FOR_BROKEN_ISFINITE - -# Check for a isnan macro that works on long doubles. -LIBGFOR_CHECK_FOR_BROKEN_ISNAN - -# Check for a fpclassify macro that works on long doubles. -LIBGFOR_CHECK_FOR_BROKEN_FPCLASSIFY - # Check whether the system has a working stat() LIBGFOR_CHECK_WORKING_STAT |