From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id B29603858414; Fri, 25 Feb 2022 00:16:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B29603858414 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r12-7380] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: 41cbcf53dc60b7434b9ee059b3a734a47f5bf212 X-Git-Newrev: 756a61851c11ffb6b5bcc21f147f6f102bf8e1f3 Message-Id: <20220225001656.B29603858414@sourceware.org> Date: Fri, 25 Feb 2022 00:16:56 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Feb 2022 00:16:56 -0000 https://gcc.gnu.org/g:756a61851c11ffb6b5bcc21f147f6f102bf8e1f3 commit r12-7380-g756a61851c11ffb6b5bcc21f147f6f102bf8e1f3 Author: GCC Administrator 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 + + * doc/invoke.texi (RISC-V -mcmodel=medany): Document the degree + of position independence that -mcmodel=medany affords. + +2022-02-24 Jose E. Marchesi + + PR target/104656 + * configure.ac: --disable-gcov if targetting bpf-*. + * configure: Regenerate. + +2022-02-24 Richard Biener + + PR tree-optimization/104676 + * tree-loop-distribution.cc (loop_distribution::execute): + Do a full scev_reset. + +2022-02-24 Jakub Jelinek + + 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 + Tobias Burnus + + * 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 + + * config/nvptx/nvptx.md (define_insn "rotlsi3", define_insn + "rotrsi3"): New define_insn. + +2022-02-24 Tom de Vries + + * config/nvptx/nvptx.cc (gen_comment): Use + DECL_SOURCE_LOCATION (cfun->decl) instead of cfun->function_start_locus. + +2022-02-24 liuhongt + + * config/i386/sse.md (v1ti3): Add suffix and replace + isa attr of alternative 2 from avx to avx512vl. + 2022-02-23 Richard Biener Jakub Jelinek 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 + + * pt.cc (defarg_insts_for): Use braces for subobject. + 2022-02-18 Patrick Palka 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 + + 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 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 + + 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 + + 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 + + PR tree-optimization/104676 + * gcc.dg/torture/pr104676.c: New testcase. + +2022-02-24 Jakub Jelinek + + PR tree-optimization/104601 + * g++.dg/torture/pr104601.C: New test. + +2022-02-24 Tom de Vries + + * gcc.target/nvptx/rotate-run.c: New test. + * gcc.target/nvptx/rotate.c: New test. + +2022-02-24 liuhongt + + * gcc.target/i386/avx512vl-logicsuffix-1.c: New test. + 2022-02-23 David Malcolm 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 + + * unwind-dw2-fde-dip.c (_Unwind_Find_FDE): Call find_fde_tail + with 0 instead of NULL. + +2022-02-24 Jose E. Marchesi + + PR target/104656 + * configure.ac: --disable-gcov if targetting bpf-*. + * configure: Regenerate. + 2022-01-25 Florian Weimer 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 + + * 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 * 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 + + PR libstdc++/104602 + * include/std/source_location (source_location::current): Use + deduced type of __builtin_source_location(). + 2022-02-22 Patrick Palka * include/bits/ranges_base.h (__detail::__is_initializer_list):