[gcc r12-8064] Daily bump.

GCC Administrator gccadmin@gcc.gnu.org
Sat Apr 9 00:17:34 GMT 2022


https://gcc.gnu.org/g:405eda0d34b69fb6ee12ba6ed0f69c2c2411d8ee

commit r12-8064-g405eda0d34b69fb6ee12ba6ed0f69c2c2411d8ee
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sat Apr 9 00:16:56 2022 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 38 ++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/c/ChangeLog         |  5 +++++
 gcc/testsuite/ChangeLog | 26 ++++++++++++++++++++++++++
 libgcc/ChangeLog        |  4 ++++
 libstdc++-v3/ChangeLog  | 22 ++++++++++++++++++++++
 6 files changed, 96 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2a7e43d0b5a..cfdd3558178 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,41 @@
+2022-04-08  Andre Vieira  <andre.simoesdiasvieira@arm.com>
+
+	PR target/105157
+	* config.gcc: Shift ext_mask by TARGET_CPU_NBITS.
+	* config/aarch64/aarch64.h (TARGET_CPU_NBITS): New macro.
+	(TARGET_CPU_MASK): Likewise.
+	(TARGET_CPU_DEFAULT): Use TARGET_CPU_NBITS.
+	* config/aarch64/aarch64.cc (aarch64_get_tune_cpu): Use TARGET_CPU_MASK.
+	(aarch64_get_arch): Likewise.
+	(aarch64_override_options): Use TARGET_CPU_NBITS.
+
+2022-04-08  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/105198
+	* tree-predcom.cc (find_looparound_phi): Check whether
+	the found memory location of the entry value is clobbered
+	inbetween the value we want to use and loop entry.
+
+2022-04-08  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/105189
+	* fold-const.cc (make_range_step): Fix up handling of
+	(unsigned) x +[low, -] ranges for signed x if low fits into
+	typeof (x).
+
+2022-04-08  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/105175
+	* tree-vect-stmts.cc (vectorizable_operation): Suppress
+	-Wvector-operation-performance if using emulated vectors.
+	* tree-vect-generic.cc (expand_vector_piecewise): Do not diagnose
+	-Wvector-operation-performance when suppressed.
+	(expand_vector_parallel): Likewise.
+	(expand_vector_comparison): Likewise.
+	(expand_vector_condition): Likewise.
+	(lower_vec_perm): Likewise.
+	(expand_vector_conversion): Likewise.
+
 2022-04-07  Tamar Christina  <tamar.christina@arm.com>
 
 	PR target/104409
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 59fcf3cf93d..8f4b6159613 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220408
+20220409
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index ea25ddb8854..b0fef44e35f 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,8 @@
+2022-04-08  Jakub Jelinek  <jakub@redhat.com>
+
+	PR c/105149
+	* c-typeck.cc (c_build_va_arg): Reject function types.
+
 2022-03-22  Marek Polacek  <polacek@redhat.com>
 
 	PR c/82283
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index f03bdb5ecdf..3f545d22635 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,29 @@
+2022-04-08  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/105198
+	* gcc.dg/torture/pr105198.c: New testcase.
+
+2022-04-08  Jakub Jelinek  <jakub@redhat.com>
+
+	PR c++/105187
+	* c-c++-common/torture/20050113-1.c: Add dg-additional-options
+	-Wno-psabi.
+
+2022-04-08  Jakub Jelinek  <jakub@redhat.com>
+
+	PR c/105149
+	* gcc.dg/pr105149.c: New test.
+
+2022-04-08  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/105189
+	* g++.dg/torture/pr105189.C: New test.
+
+2022-04-08  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/105175
+	* gcc.dg/pr105175.c: New testcase.
+
 2022-04-07   Michael Meissner  <meissner@linux.ibm.com>
 
 	PR target/104253
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index 8b2b9f4c191..ce0cb325db3 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,3 +1,7 @@
+2022-04-08  Sergei Trofimovich  <siarheit@google.com>
+
+	* config/ia64/fde-glibc.c: Make a no-op in inhibit_libc mode.
+
 2022-03-29  Chenghua Xu  <xuchenghua@loongson.cn>
 	    Lulu Cheng  <chenglulu@loongson.cn>
 
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 7d2fe7113fa..1b0000ea5e1 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,25 @@
+2022-04-08  Jonathan Wakely  <jwakely@redhat.com>
+
+	PR libstdc++/105153
+	* include/std/expected
+	(expected<void,E>::expected(expected<U,G>&&)): Fix constraints.
+	* testsuite/20_util/expected/cons.cc: Check constructor.
+
+2022-04-08  Jonathan Wakely  <jwakely@redhat.com>
+
+	PR libstdc++/105154
+	* include/std/expected (expected<void, E>::swap): Set
+	_M_has_value to false for objects that previously had a value.
+	* testsuite/20_util/expected/swap.cc: Fix test to check void
+	specialization.
+
+2022-04-08  Jonathan Wakely  <jwakely@redhat.com>
+
+	PR libstdc++/105146
+	* include/std/expected (bad_expected_access): Move constructor
+	parameter.
+	* testsuite/20_util/expected/bad.cc: New test.
+
 2022-04-07  Hans-Peter Nilsson  <hp@axis.com>
 
 	* testsuite/20_util/expected/requirements.cc: Correct minimal-size


More information about the Libstdc++-cvs mailing list