]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Use ::isinf and ::isnan if libc defines them
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 13 Jan 2016 16:25:56 +0000 (16:25 +0000)
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 13 Jan 2016 16:25:56 +0000 (16:25 +0000)
PR libstdc++/48891
* acinclude.m4 (GLIBCXX_CHECK_MATH11_PROTO): Check for obsolete isinf
and isnan functions.
* config.h.in: Regenerate.
* configure: Regenerate.
* include/c_global/cmath (isinf(double), isnan(double))
[_GLIBCXX_HAVE_OBSOLETE_ISINF_ISNAN]: Import via using-directive.
* testsuite/26_numerics/headers/cmath/48891.cc: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@232327 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/acinclude.m4
libstdc++-v3/config.h.in
libstdc++-v3/configure
libstdc++-v3/include/c_global/cmath
libstdc++-v3/testsuite/26_numerics/headers/cmath/48891.cc [new file with mode: 0644]

index 00f7339efb8f21b73e302db3261598f676b480ad..83669c31be5b47cc486e3a2b55ab0f769a876b17 100644 (file)
@@ -1,3 +1,14 @@
+2016-01-13  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/48891
+       * acinclude.m4 (GLIBCXX_CHECK_MATH11_PROTO): Check for obsolete isinf
+       and isnan functions.
+       * config.h.in: Regenerate.
+       * configure: Regenerate.
+       * include/c_global/cmath (isinf(double), isnan(double))
+       [_GLIBCXX_HAVE_OBSOLETE_ISINF_ISNAN]: Import via using-directive.
+       * testsuite/26_numerics/headers/cmath/48891.cc: New.
+
 2016-01-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
 
        PR libstdc++/66006
index 75e46671faf2b316d600fb2beb00d5c8a26ab80d..b76e8d51b960beffa4fba96b5715c0024fe87211 100644 (file)
@@ -2186,6 +2186,40 @@ AC_DEFUN([GLIBCXX_CHECK_MATH11_PROTO], [
       fi
       AC_MSG_RESULT([$glibcxx_cv_math11_overload])
       ;;
+    *-*-*gnu*)
+      # If <math.h> defines the obsolete isinf(double) and isnan(double)
+      # functions (instead of or as well as the C99 generic macros) then we
+      # can't define std::isinf(double) and std::isnan(double) in <cmath>
+      # and must use the ones from <math.h> instead.
+      AC_MSG_CHECKING([for obsolete isinf and isnan functions in <math.h>])
+        AC_CACHE_VAL(glibcxx_cv_obsolete_isinf_isnan, [
+          AC_COMPILE_IFELSE([AC_LANG_SOURCE(
+            [#include <math.h>
+             #undef isinf
+             #undef isnan
+             namespace std {
+               using ::isinf;
+               bool isinf(float);
+               bool isinf(long double);
+               using ::isnan;
+               bool isnan(float);
+               bool isnan(long double);
+             }
+             using std::isinf;
+             using std::isnan;
+             bool b = isinf(0.0) || isnan(0.0);
+          ])],
+          [glibcxx_cv_obsolete_isinf_isnan=yes],
+          [glibcxx_cv_obsolete_isinf_isnan=no]
+        )])
+
+
+      if test $glibcxx_cv_obsolete_isinf_isnan = yes; then
+        AC_DEFINE(HAVE_OBSOLETE_ISINF_ISNAN, 1,
+                  [Define if <math.h> defines obsolete isinf and isnan functions.])
+      fi
+      AC_MSG_RESULT([$glibcxx_cv_obsolete_isinf_isnan])
+      ;;
   esac
 
   CXXFLAGS="$ac_save_CXXFLAGS"
index b6cb7aa86e7098cece4aa40549b3522857bf85fe..5fb0cd3dc26574c51414ecb00e726106d970646c 100644 (file)
 /* Define to 1 if you have the <nan.h> header file. */
 #undef HAVE_NAN_H
 
+/* Define if <math.h> defines obsolete isinf and isnan functions. */
+#undef HAVE_OBSOLETE_ISINF_ISNAN
+
 /* Define if poll is available in <poll.h>. */
 #undef HAVE_POLL
 
index 94120ec4dd5055403d1526ad4ea0c33a00f46c95..38f14f6729ebfd76816ebf34d301eecc65ea0035 100755 (executable)
       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_math11_overload" >&5
 $as_echo "$glibcxx_cv_math11_overload" >&6; }
       ;;
+    *-*-*gnu*)
+      # If <math.h> defines the obsolete isinf(double) and isnan(double)
+      # functions (instead of or as well as the C99 generic macros) then we
+      # can't define std::isinf(double) and std::isnan(double) in <cmath>
+      # and must use the ones from <math.h> instead.
+      { $as_echo "$as_me:${as_lineno-$LINENO}: checking for obsolete isinf and isnan functions in <math.h>" >&5
+$as_echo_n "checking for obsolete isinf and isnan functions in <math.h>... " >&6; }
+        if test "${glibcxx_cv_obsolete_isinf_isnan+set}" = set; then :
+  $as_echo_n "(cached) " >&6
+else
+
+          cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <math.h>
+             #undef isinf
+             #undef isnan
+             namespace std {
+               using ::isinf;
+               bool isinf(float);
+               bool isinf(long double);
+               using ::isnan;
+               bool isnan(float);
+               bool isnan(long double);
+             }
+             using std::isinf;
+             using std::isnan;
+             bool b = isinf(0.0) || isnan(0.0);
+
+_ACEOF
+if ac_fn_cxx_try_compile "$LINENO"; then :
+  glibcxx_cv_obsolete_isinf_isnan=yes
+else
+  glibcxx_cv_obsolete_isinf_isnan=no
+
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+fi
+
+
+
+      if test $glibcxx_cv_obsolete_isinf_isnan = yes; then
+
+$as_echo "#define HAVE_OBSOLETE_ISINF_ISNAN 1" >>confdefs.h
+
+      fi
+      { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_obsolete_isinf_isnan" >&5
+$as_echo "$glibcxx_cv_obsolete_isinf_isnan" >&6; }
+      ;;
   esac
 
   CXXFLAGS="$ac_save_CXXFLAGS"
index da7ec28440bd4f60e42043f125cdbcf022bda63a..6269e3277707a928e8090c50737a257c2f24a275 100644 (file)
@@ -606,9 +606,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
   isinf(float __x)
   { return __builtin_isinf(__x); }
 
+#ifdef _GLIBCXX_HAVE_OBSOLETE_ISINF_ISNAN
+  using ::isinf;
+#else
   constexpr bool
   isinf(double __x)
   { return __builtin_isinf(__x); }
+#endif
 
   constexpr bool
   isinf(long double __x)
@@ -626,9 +630,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
   isnan(float __x)
   { return __builtin_isnan(__x); }
 
+#ifdef _GLIBCXX_HAVE_OBSOLETE_ISINF_ISNAN
+  using ::isnan;
+#else
   constexpr bool
   isnan(double __x)
   { return __builtin_isnan(__x); }
+#endif
 
   constexpr bool
   isnan(long double __x)
diff --git a/libstdc++-v3/testsuite/26_numerics/headers/cmath/48891.cc b/libstdc++-v3/testsuite/26_numerics/headers/cmath/48891.cc
new file mode 100644 (file)
index 0000000..ef94fe1
--- /dev/null
@@ -0,0 +1,30 @@
+// Copyright (C) 2016 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+
+// PR libstdc++/48891
+
+#include <math.h>
+#include <cmath>
+
+using std::isinf;
+using std::isnan;
+
+bool d1 = isinf(1.0);
+bool d2 = isnan(1.0);