https://gcc.gnu.org/g:789f05536df8fcea58cc3ccede4b2383e17b8be1

commit r14-10323-g789f05536df8fcea58cc3ccede4b2383e17b8be1
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Tue Jun 18 00:22:42 2024 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 10 +++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/c-family/ChangeLog  | 10 +++++++++
 gcc/cp/ChangeLog        | 39 ++++++++++++++++++++++++++++++++++
 gcc/testsuite/ChangeLog | 56 +++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 116 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b3d086f3c6d2..b792f995ec57 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,13 @@
+2024-06-17  Stefan Schulze Frielinghaus  <stefa...@linux.ibm.com>
+
+       Backported from master:
+       2024-05-23  Stefan Schulze Frielinghaus  <stefa...@linux.ibm.com>
+
+       PR target/109549
+       * config/s390/s390.cc (TARGET_NOCE_CONVERSION_PROFITABLE_P):
+       Define.
+       (s390_noce_conversion_profitable_p): Implement.
+
 2024-06-15  Christoph Müllner  <christoph.muell...@vrull.eu>
 
        Backported from master:
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index bf0b926d2c42..27d3477e4c42 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20240617
+20240618
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index 8676658bdf35..4a52254e21a0 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,13 @@
+2024-06-17  Jakub Jelinek  <ja...@redhat.com>
+
+       Backported from master:
+       2024-06-17  Jakub Jelinek  <ja...@redhat.com>
+
+       PR c/115290
+       * c-warn.cc (do_warn_array_compare): Use %E rather than %D for
+       printing op0 and op1; if those operands aren't decls, also print
+       parens around them.
+
 2024-05-15  Richard Biener  <rguent...@suse.de>
 
        Backported from master:
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 2300e45d9821..5bb960ef839a 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,42 @@
+2024-06-17  Jakub Jelinek  <ja...@redhat.com>
+
+       Backported from master:
+       2024-06-17  Jakub Jelinek  <ja...@redhat.com>
+
+       PR target/111343
+       PR c++/115511
+       * typeck.cc (cp_compare_floating_point_conversion_ranks): If an
+       extended floating point type mv1 has same set of values as more
+       than one standard floating point type and mv2 is float, return 2.
+
+2024-06-17  Patrick Palka  <ppa...@redhat.com>
+
+       Backported from master:
+       2024-06-13  Patrick Palka  <ppa...@redhat.com>
+
+       PR c++/99678
+       * parser.cc (cp_parser_constraint_primary_expression): Diagnose
+       a bare unresolved unqualified-id.
+
+2024-06-17  Patrick Palka  <ppa...@redhat.com>
+
+       Backported from master:
+       2024-06-13  Patrick Palka  <ppa...@redhat.com>
+
+       PR c++/115239
+       * call.cc (tourney): Don't consider a non-strictly viable
+       candidate as the champ if there was ambiguity between two
+       strictly viable candidates.
+
+2024-06-17  Patrick Palka  <ppa...@redhat.com>
+
+       Backported from master:
+       2024-06-13  Patrick Palka  <ppa...@redhat.com>
+
+       PR c++/115283
+       * decl2.cc (min_vis_expr_r) <case TEMPLATE_DECL>: Ignore
+       concepts.
+
 2024-06-10  Patrick Palka  <ppa...@redhat.com>
 
        Backported from master:
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 26b7119b6923..d2d4b91eaa17 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,59 @@
+2024-06-17  Jakub Jelinek  <ja...@redhat.com>
+
+       Backported from master:
+       2024-06-17  Jakub Jelinek  <ja...@redhat.com>
+
+       PR c/115290
+       * c-c++-common/Warray-compare-3.c: New test.
+
+2024-06-17  Jakub Jelinek  <ja...@redhat.com>
+
+       Backported from master:
+       2024-06-17  Jakub Jelinek  <ja...@redhat.com>
+
+       PR target/111343
+       PR c++/115511
+       * g++.dg/cpp23/ext-floating18.C: New test.
+
+2024-06-17  Patrick Palka  <ppa...@redhat.com>
+
+       Backported from master:
+       2024-06-13  Patrick Palka  <ppa...@redhat.com>
+
+       PR c++/99678
+       * g++.dg/cpp2a/concepts-requires38.C: New test.
+
+2024-06-17  Patrick Palka  <ppa...@redhat.com>
+
+       Backported from master:
+       2024-06-13  Patrick Palka  <ppa...@redhat.com>
+
+       PR c++/115239
+       * g++.dg/overload/error7.C: New test.
+
+2024-06-17  Patrick Palka  <ppa...@redhat.com>
+
+       Backported from master:
+       2024-06-13  Patrick Palka  <ppa...@redhat.com>
+
+       PR c++/115283
+       * g++.dg/template/linkage5.C: New test.
+
+2024-06-17  Stefan Schulze Frielinghaus  <stefa...@linux.ibm.com>
+
+       Backported from master:
+       2024-06-17  Stefan Schulze Frielinghaus  <stefa...@linux.ibm.com>
+
+       * gcc.target/s390/ifcvt-one-insn-bool.c: Fix loc.
+
+2024-06-17  Stefan Schulze Frielinghaus  <stefa...@linux.ibm.com>
+
+       Backported from master:
+       2024-05-23  Stefan Schulze Frielinghaus  <stefa...@linux.ibm.com>
+
+       * gcc.target/s390/ccor.c: Order of loads are reversed, now, as a
+       consequence the condition has to be reversed.
+
 2024-06-12  Torbjörn SVENSSON  <torbjorn.svens...@foss.st.com>
 
        Backported from master:

Reply via email to