From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 8D3F93858023; Mon, 1 Aug 2022 00:17:12 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8D3F93858023 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-1908] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: 525a1a73a5a563c829a5f76858fe122c9b39f254 X-Git-Newrev: 4a7274ddc4970c1ad011343ed285d6219dffa396 Message-Id: <20220801001712.8D3F93858023@sourceware.org> Date: Mon, 1 Aug 2022 00:17:12 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Aug 2022 00:17:12 -0000 https://gcc.gnu.org/g:4a7274ddc4970c1ad011343ed285d6219dffa396 commit r13-1908-g4a7274ddc4970c1ad011343ed285d6219dffa396 Author: GCC Administrator Date: Mon Aug 1 00:16:31 2022 +0000 Daily bump. Diff: --- ChangeLog | 6 ++++++ gcc/ChangeLog | 16 ++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 9 +++++++++ gcc/cp/ChangeLog | 12 ++++++++++++ gcc/fortran/ChangeLog | 23 +++++++++++++++++++++++ gcc/testsuite/ChangeLog | 29 +++++++++++++++++++++++++++++ 7 files changed, 96 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 217f54e3d26..ebc62a99f44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2022-07-31 Roger Sayle + + PR bootstrap/106472 + * Makefile.def (dependencies): Make configure-target-libgo depend + upon all-target-libbacktrace. + 2022-07-27 David Faust * MAINTAINERS: Add myself as reviewer for CTF and BTF. diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 892a683a8bb..22cf563d32d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,19 @@ +2022-07-31 Roger Sayle + + * config/i386/i386.md (define_expand ti3): For + rotations by 64 bits use new rot[lr]64ti2_doubleword pattern. + (rot[lr]64ti2_doubleword): New post-reload splitter. + +2022-07-31 Roger Sayle + H.J. Lu + + PR target/106450 + * config/i386/i386-features.cc (timode_check_non_convertible_regs): + Do nothing if REGNO is set in the REGS bitmap, or is a hard reg. + (timode_remove_non_convertible_regs): Update comment. + Call timode_check_non_convertible_reg on all TImode register + DEFs and USEs in each instruction. + 2022-07-30 Takayuki 'January June' Suwa * config/xtensa/xtensa.md: Change hard register number used in diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index a519ff332ef..ed14e56feeb 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220731 +20220801 diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 73e959dc0c1..68fc6e2761e 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,12 @@ +2022-07-31 Lewis Hyatt + + PR c++/66290 + * c-common.h: Rename global done_lexing to + override_libcpp_locations. + * c-common.cc (c_cpp_diagnostic): Likewise. + * c-opts.cc (c_common_finish): Set override_libcpp_locations + (formerly done_lexing) immediately prior to calling cpp_finish (). + 2022-07-27 Lewis Hyatt * c-ppoutput.cc (token_streamer::stream): Update input_location diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 8ff65cb07d1..4d7761c23f1 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,15 @@ +2022-07-31 Lewis Hyatt + + PR c++/66290 + * parser.cc (cp_lexer_new_main): Rename global done_lexing to + override_libcpp_locations. + +2022-07-31 Jason Merrill + + PR c++/106369 + * constexpr.cc (reduced_constant_expression_p): Return false + if a CONSTRUCTOR initializes an empty field. + 2022-07-29 Jakub Jelinek PR c++/106448 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 0473563c3a2..74968c9f0fa 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,26 @@ +2022-07-31 Harald Anlauf + Steven G. Kargl + + PR fortran/92805 + * match.cc (gfc_match_small_literal_int): Make gobbling of leading + whitespace optional. + (gfc_match_name): Likewise. + (gfc_match_char): Likewise. + * match.h (gfc_match_small_literal_int): Adjust prototype. + (gfc_match_name): Likewise. + (gfc_match_char): Likewise. + * primary.cc (match_kind_param): Match small literal int or name + without gobbling whitespace. + (get_kind): Do not skip over blanks. + (match_string_constant): Likewise. + +2022-07-31 Harald Anlauf + + PR fortran/77652 + * check.cc (gfc_check_associated): Make the rank check of POINTER + vs. TARGET match the allowed forms of pointer assignment for the + selected Fortran standard. + 2022-07-29 Tobias Burnus * openmp.cc (resolve_omp_clauses): Permit assumed-size arrays diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9dbecbc8d76..781bba72408 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,32 @@ +2022-07-31 Roger Sayle + H.J. Lu + + PR target/106450 + * gcc.target/i386/pr106450.c: New test case. + +2022-07-31 Harald Anlauf + Steven G. Kargl + + PR fortran/92805 + * gfortran.dg/literal_constants.f: New test. + * gfortran.dg/literal_constants.f90: New test. + +2022-07-31 Harald Anlauf + + PR fortran/77652 + * gfortran.dg/associated_target_9a.f90: New test. + * gfortran.dg/associated_target_9b.f90: New test. + +2022-07-31 Lewis Hyatt + + PR c++/66290 + * c-c++-common/pragma-diag-15.c: Remove xfail for C++. + +2022-07-31 Jason Merrill + + PR c++/106369 + * g++.dg/cpp1z/constexpr-lambda27.C: New test. + 2022-07-29 Tobias Burnus * gfortran.dg/gomp/declare-simd-3.f90: New test.