[gcc r12-7380] Daily bump.

GCC Administrator gccadmin@gcc.gnu.org
Fri Feb 25 00:16:56 GMT 2022


https://gcc.gnu.org/g:756a61851c11ffb6b5bcc21f147f6f102bf8e1f3

commit r12-7380-g756a61851c11ffb6b5bcc21f147f6f102bf8e1f3
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Fri Feb 25 00:16:20 2022 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        |  4 ++++
 gcc/fortran/ChangeLog   | 11 +++++++++++
 gcc/testsuite/ChangeLog | 33 +++++++++++++++++++++++++++++++++
 libgcc/ChangeLog        | 11 +++++++++++
 libgomp/ChangeLog       | 10 ++++++++++
 libstdc++-v3/ChangeLog  |  6 ++++++
 8 files changed, 122 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index bf1e5c0e60f..0006e1207d0 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,49 @@
+2022-02-24  Palmer Dabbelt  <palmer@rivosinc.com>
+
+	* doc/invoke.texi (RISC-V -mcmodel=medany): Document the degree
+	of position independence that -mcmodel=medany affords.
+
+2022-02-24  Jose E. Marchesi  <jose.marchesi@oracle.com>
+
+	PR target/104656
+	* configure.ac: --disable-gcov if targetting bpf-*.
+	* configure: Regenerate.
+
+2022-02-24  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/104676
+	* tree-loop-distribution.cc (loop_distribution::execute):
+	Do a full scev_reset.
+
+2022-02-24  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/104601
+	* tree-ssa-sccvn.cc (visit_reference_op_call): For calls with
+	non-SSA_NAME lhs value number vdef to itself instead of e.g. the
+	vuse value number.
+
+2022-02-24  Tom de Vries  <tdevries@suse.de>
+	    Tobias Burnus  <tobias@codesourcery.com>
+
+	* config/nvptx/nvptx.cc (nvptx_omp_device_kind_arch_isa): Handle
+	sm_70, sm_75 and sm_80.
+	* config/nvptx/t-omp-device: Add sm_53, sm_70, sm_75 and sm_80.
+
+2022-02-24  Tom de Vries  <tdevries@suse.de>
+
+	* config/nvptx/nvptx.md (define_insn "rotlsi3", define_insn
+	"rotrsi3"): New define_insn.
+
+2022-02-24  Tom de Vries  <tdevries@suse.de>
+
+	* config/nvptx/nvptx.cc (gen_comment): Use
+	DECL_SOURCE_LOCATION (cfun->decl) instead of cfun->function_start_locus.
+
+2022-02-24  liuhongt  <hongtao.liu@intel.com>
+
+	* config/i386/sse.md (<code>v1ti3): Add suffix and replace
+	isa attr of alternative 2 from avx to avx512vl.
+
 2022-02-23  Richard Biener  <rguenther@suse.de>
 	    Jakub Jelinek  <jakub@redhat.com>
 
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 586e0feb818..5dc2a23e275 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220224
+20220225
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 35ebe52c85c..497d0851539 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,7 @@
+2022-02-24  Martin Liska  <mliska@suse.cz>
+
+	* pt.cc (defarg_insts_for): Use braces for subobject.
+
 2022-02-18  Patrick Palka  <ppalka@redhat.com>
 
 	PR c++/94944
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index f9194547427..e26a720af57 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,14 @@
+2022-02-24  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/84519
+	* dump-parse-tree.cc (show_code_node): Dump QUIET specifier when
+	present.
+	* match.cc (gfc_match_stopcode): Implement parsing of F2018 QUIET
+	specifier.  F2018 stopcodes may have non-default integer kind.
+	* resolve.cc (gfc_resolve_code): Add checks for QUIET argument.
+	* trans-stmt.cc (gfc_trans_stop): Pass QUIET specifier to call of
+	library function.
+
 2022-02-22  Harald Anlauf  <anlauf@gmx.de>
 
 	PR fortran/104619
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 8bfd8730fa0..5e7e960a0d7 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,36 @@
+2022-02-24  Pat Haugen  <pthaugen@linux.ibm.com>
+
+	PR testsuite/100407
+	* gcc.c-torture/compile/attr-retain-1.c: Add -G0 for 32-bit PowerPC.
+	* gcc.c-torture/compile/attr-retain-2.c: Likewise.
+
+2022-02-24  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/84519
+	* gfortran.dg/stop_1.f90: New test.
+	* gfortran.dg/stop_2.f: New test.
+	* gfortran.dg/stop_3.f90: New test.
+	* gfortran.dg/stop_4.f90: New test.
+
+2022-02-24  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/104676
+	* gcc.dg/torture/pr104676.c: New testcase.
+
+2022-02-24  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/104601
+	* g++.dg/torture/pr104601.C: New test.
+
+2022-02-24  Tom de Vries  <tdevries@suse.de>
+
+	* gcc.target/nvptx/rotate-run.c: New test.
+	* gcc.target/nvptx/rotate.c: New test.
+
+2022-02-24  liuhongt  <hongtao.liu@intel.com>
+
+	* gcc.target/i386/avx512vl-logicsuffix-1.c: New test.
+
 2022-02-23  David Malcolm  <dmalcolm@redhat.com>
 
 	PR analyzer/104434
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index 035bfb5d818..d9da85d78c1 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,3 +1,14 @@
+2022-02-24  Xi Ruoyao  <xry111@mengyan1223.wang>
+
+	* unwind-dw2-fde-dip.c (_Unwind_Find_FDE): Call find_fde_tail
+	with 0 instead of NULL.
+
+2022-02-24  Jose E. Marchesi  <jose.marchesi@oracle.com>
+
+	PR target/104656
+	* configure.ac: --disable-gcov if targetting bpf-*.
+	* configure: Regenerate.
+
 2022-01-25  Florian Weimer  <fweimer@redhat.com>
 
 	PR libgcc/104207
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index d65bcb4949a..cc9eaabe507 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,13 @@
+2022-02-24  Tom de Vries  <tdevries@suse.de>
+
+	* testsuite/libgomp.c/declare-variant-3-sm30.c: New test.
+	* testsuite/libgomp.c/declare-variant-3-sm35.c: New test.
+	* testsuite/libgomp.c/declare-variant-3-sm53.c: New test.
+	* testsuite/libgomp.c/declare-variant-3-sm70.c: New test.
+	* testsuite/libgomp.c/declare-variant-3-sm75.c: New test.
+	* testsuite/libgomp.c/declare-variant-3-sm80.c: New test.
+	* testsuite/libgomp.c/declare-variant-3.h: New header file.
+
 2022-02-22  Thomas Schwinge  <thomas@codesourcery.com>
 
 	* testsuite/libgomp.oacc-fortran/privatized-ref-2.f90: Fix OpenACC
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 3f2506ddfad..cd347a5a70b 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,9 @@
+2022-02-24  Jonathan Wakely  <jwakely@redhat.com>
+
+	PR libstdc++/104602
+	* include/std/source_location (source_location::current): Use
+	deduced type of __builtin_source_location().
+
 2022-02-22  Patrick Palka  <ppalka@redhat.com>
 
 	* include/bits/ranges_base.h (__detail::__is_initializer_list):


More information about the Libstdc++-cvs mailing list