public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/giulianob/heads/autopar_rebase2)] libstdc++: Avoid using __float128 in strict modes
@ 2020-08-18  1:21 Giuliano Belinassi
  0 siblings, 0 replies; only message in thread
From: Giuliano Belinassi @ 2020-08-18  1:21 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:e7457aae14f6a501f142171f7becd8619bb1a218

commit e7457aae14f6a501f142171f7becd8619bb1a218
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Fri Jul 31 19:58:03 2020 +0100

    libstdc++: Avoid using __float128 in strict modes
    
    libstdc++-v3/ChangeLog:
    
            * testsuite/26_numerics/numbers/float128.cc: Check
            __STRICT_ANSI__ before using __float128.
            * testsuite/std/concepts/concepts.lang/concept.arithmetic/floating_point.cc:
            Likewise.

Diff:
---
 libstdc++-v3/testsuite/26_numerics/numbers/float128.cc                  | 2 +-
 .../std/concepts/concepts.lang/concept.arithmetic/floating_point.cc     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libstdc++-v3/testsuite/26_numerics/numbers/float128.cc b/libstdc++-v3/testsuite/26_numerics/numbers/float128.cc
index 51ce21570e0..421af7af67f 100644
--- a/libstdc++-v3/testsuite/26_numerics/numbers/float128.cc
+++ b/libstdc++-v3/testsuite/26_numerics/numbers/float128.cc
@@ -20,7 +20,7 @@
 
 #include <numbers>
 
-#if defined(_GLIBCXX_USE_FLOAT128)
+#if !defined(__STRICT_ANSI__) && defined(_GLIBCXX_USE_FLOAT128)
 void
 test01()
 {
diff --git a/libstdc++-v3/testsuite/std/concepts/concepts.lang/concept.arithmetic/floating_point.cc b/libstdc++-v3/testsuite/std/concepts/concepts.lang/concept.arithmetic/floating_point.cc
index 1e7d649b6a7..9617889505f 100644
--- a/libstdc++-v3/testsuite/std/concepts/concepts.lang/concept.arithmetic/floating_point.cc
+++ b/libstdc++-v3/testsuite/std/concepts/concepts.lang/concept.arithmetic/floating_point.cc
@@ -23,7 +23,7 @@
 static_assert( std::floating_point<float> );
 static_assert( std::floating_point<double> );
 static_assert( std::floating_point<long double> );
-#ifdef _GLIBCXX_USE_FLOAT128
+#if !defined(__STRICT_ANSI__) && defined(_GLIBCXX_USE_FLOAT128)
 static_assert( std::floating_point<__float128> );
 #endif


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-08-18  1:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-18  1:21 [gcc(refs/users/giulianob/heads/autopar_rebase2)] libstdc++: Avoid using __float128 in strict modes Giuliano Belinassi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).