https://gcc.gnu.org/g:47cbc76568b9f8bfbdcf93845ea17cbf8a0ceba1

commit r14-10360-g47cbc76568b9f8bfbdcf93845ea17cbf8a0ceba1
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sat Jun 29 00:22:50 2024 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 43 +++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        | 30 ++++++++++++++++++++++++++++++
 gcc/testsuite/ChangeLog | 35 +++++++++++++++++++++++++++++++++++
 libstdc++-v3/ChangeLog  | 11 +++++++++++
 5 files changed, 120 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8c343da4b85..0e7d2353c1b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,46 @@
+2024-06-28  Kewen Lin  <li...@linux.ibm.com>
+
+       Backported from master:
+       2024-06-21  Kewen Lin  <li...@linux.ibm.com>
+                   Xionghu Luo  <xionghu...@tencent.com>
+
+       PR target/106069
+       PR target/115355
+       * config/rs6000/altivec.md (altivec_vmrghw_direct_<VSX_W:mode>): Rename
+       to ...
+       (altivec_vmrghw_direct_<VSX_W:mode>_be): ... this.  Add the condition
+       BYTES_BIG_ENDIAN.
+       (altivec_vmrghw_direct_<VSX_W:mode>_le): New define_insn.
+       (altivec_vmrglw_direct_<VSX_W:mode>): Rename to ...
+       (altivec_vmrglw_direct_<VSX_W:mode>_be): ... this.  Add the condition
+       BYTES_BIG_ENDIAN.
+       (altivec_vmrglw_direct_<VSX_W:mode>_le): New define_insn.
+       (altivec_vmrghw): Adjust by calling gen_altivec_vmrghw_direct_v4si_be
+       for BE and gen_altivec_vmrglw_direct_v4si_le for LE.
+       (altivec_vmrglw): Adjust by calling gen_altivec_vmrglw_direct_v4si_be
+       for BE and gen_altivec_vmrghw_direct_v4si_le for LE.
+       (vec_widen_umult_hi_v8hi): Adjust the call to
+       gen_altivec_vmrghw_direct_v4si by gen_altivec_vmrghw for BE
+       and by gen_altivec_vmrglw for LE.
+       (vec_widen_smult_hi_v8hi): Likewise.
+       (vec_widen_umult_lo_v8hi): Adjust the call to
+       gen_altivec_vmrglw_direct_v4si by gen_altivec_vmrglw for BE
+       and by gen_altivec_vmrghw for LE
+       (vec_widen_smult_lo_v8hi): Likewise.
+       * config/rs6000/rs6000.cc (altivec_expand_vec_perm_const): Replace
+       CODE_FOR_altivec_vmrghw_direct_v4si by
+       CODE_FOR_altivec_vmrghw_direct_v4si_be for BE and
+       CODE_FOR_altivec_vmrghw_direct_v4si_le for LE.  And replace
+       CODE_FOR_altivec_vmrglw_direct_v4si by
+       CODE_FOR_altivec_vmrglw_direct_v4si_be for BE and
+       CODE_FOR_altivec_vmrglw_direct_v4si_le for LE.
+       * config/rs6000/vsx.md (vsx_xxmrghw_<VSX_W:mode>): Adjust by calling
+       gen_altivec_vmrghw_direct_v4si_be for BE and
+       gen_altivec_vmrglw_direct_v4si_le for LE.
+       (vsx_xxmrglw_<VSX_W:mode>): Adjust by calling
+       gen_altivec_vmrglw_direct_v4si_be for BE and
+       gen_altivec_vmrghw_direct_v4si_le for LE.
+
 2024-06-27  Kyrylo Tkachov  <ktkac...@nvidia.com>
 
        * config/aarch64/aarch64-cores.def (grace): New entry.
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index b08c5cee3e2..674b36c5c7c 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20240628
+20240629
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 8518e3a6b20..49d77ece58c 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,33 @@
+2024-06-28  Patrick Palka  <ppa...@redhat.com>
+
+       Backported from master:
+       2024-06-26  Patrick Palka  <ppa...@redhat.com>
+
+       PR c++/115504
+       * semantics.cc (finish_decltype_type): Don't strip the reference
+       type (if any) of a capture proxy's captured variable.
+
+2024-06-28  Patrick Palka  <ppa...@redhat.com>
+
+       Backported from master:
+       2024-06-25  Patrick Palka  <ppa...@redhat.com>
+
+       PR c++/115198
+       * pt.cc (alias_ctad_tweaks): Update DECL_NAME of the transformed
+       guides.
+
+2024-06-28  Patrick Palka  <ppa...@redhat.com>
+
+       Backported from master:
+       2024-06-25  Patrick Palka  <ppa...@redhat.com>
+
+       PR c++/115358
+       * decl2.cc (mark_used): Call maybe_instantiate_decl for an array
+       variable with unknown bound.
+       * semantics.cc (finish_decltype_type): Remove now redundant
+       handling of array variables with unknown bound.
+       * typeck.cc (cxx_sizeof_expr): Likewise.
+
 2024-06-25  Sandra Loosemore  <sloosem...@baylibre.com>
 
        Backported from master:
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index b0033c1f8c6..4a7ee8d7517 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,38 @@
+2024-06-28  Patrick Palka  <ppa...@redhat.com>
+
+       Backported from master:
+       2024-06-26  Patrick Palka  <ppa...@redhat.com>
+
+       PR c++/115504
+       * g++.dg/cpp1y/decltype-auto8.C: New test.
+
+2024-06-28  Patrick Palka  <ppa...@redhat.com>
+
+       Backported from master:
+       2024-06-25  Patrick Palka  <ppa...@redhat.com>
+
+       PR c++/115198
+       * g++.dg/cpp2a/class-deduction-alias22.C: New test.
+
+2024-06-28  Patrick Palka  <ppa...@redhat.com>
+
+       Backported from master:
+       2024-06-25  Patrick Palka  <ppa...@redhat.com>
+
+       PR c++/115358
+       * g++.dg/template/array37.C: New test.
+
+2024-06-28  Kewen Lin  <li...@linux.ibm.com>
+
+       Backported from master:
+       2024-06-21  Kewen Lin  <li...@linux.ibm.com>
+                   Xionghu Luo  <xionghu...@tencent.com>
+
+       PR target/106069
+       PR target/115355
+       * g++.target/powerpc/pr106069.C: New test.
+       * gcc.target/powerpc/pr115355.c: New test.
+
 2024-06-27  Jiawei  <jia...@iscas.ac.cn>
 
        * gcc.target/riscv/rvv/vsetvl/pr115214.c: New test.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 575155b60a6..311810c0dc5 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,14 @@
+2024-06-28  Jonathan Wakely  <jwak...@redhat.com>
+
+       Backported from master:
+       2024-06-27  Jonathan Wakely  <jwak...@redhat.com>
+
+       PR libstdc++/115668
+       * include/bits/chrono_io.h (formatter<duration<R,P, C>::format):
+       Do not use chrono::abs.
+       * testsuite/20_util/duration/io.cc: Check formatting a duration
+       with unsigned rep.
+
 2024-06-27  Jonathan Wakely  <jwak...@redhat.com>
 
        Backported from master:

Reply via email to