From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 7C5843858401; Sat, 11 Sep 2021 00:17:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7C5843858401 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 r10-10112] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/releases/gcc-10 X-Git-Oldrev: 80b1492b2de153f4850a32cafcd8f4d37c2c84fc X-Git-Newrev: b3c770347a54051ca59c63c436238934e329ca71 Message-Id: <20210911001750.7C5843858401@sourceware.org> Date: Sat, 11 Sep 2021 00:17:50 +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: Sat, 11 Sep 2021 00:17:50 -0000 https://gcc.gnu.org/g:b3c770347a54051ca59c63c436238934e329ca71 commit r10-10112-gb3c770347a54051ca59c63c436238934e329ca71 Author: GCC Administrator Date: Sat Sep 11 00:17:18 2021 +0000 Daily bump. Diff: --- gcc/DATESTAMP | 2 +- gcc/fortran/ChangeLog | 64 +++++++++++++++++++++++++++++++++++++++++++++++++ gcc/testsuite/ChangeLog | 53 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 118 insertions(+), 1 deletion(-) diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 77061197cc6..6edcec5ae6d 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20210910 +20210911 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 2708ce3f9d4..0cf0d706ab1 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,67 @@ +2021-09-10 Paul Thomas + + Backported from master: + 2020-12-29 Paul Thomas + + PR fortran/97612 + * primary.c (build_actual_constructor): Missing allocatable + components are set unallocated using EXPR_NULL. Then missing + components are tested for a default initializer. + +2021-09-10 Paul Thomas + + Backported from master: + 2021-01-22 Paul Thomas + + PR fortran/98565 + * trans-intrinsic.c (gfc_conv_associated): Do not add a _data + component for scalar class function targets. Instead, fix the + function result and access the _data from that. + +2021-09-10 Paul Thomas + + Backported from master: + 2020-12-27 Paul Thomas + + PR fortran/97694 + PR fortran/97723 + * check.c (allocatable_check): Select rank temporaries are + permitted even though they are treated as associate variables. + * resolve.c (gfc_resolve_code): Break on select rank as well as + select type so that the block os resolved. + * trans-stmt.c (trans_associate_var): Class associate variables + that are optional dummies must use the backend_decl. + +2021-09-10 Paul Thomas + + Backported from master: + 2021-01-07 Paul Thomas + + PR fortran/93701 + * resolve.c (find_array_spec): Put static prototype for + resolve_assoc_var before this function and call for associate + variables. + +2021-09-10 Paul Thomas + + Backported from master: + 2021-01-27 Paul Thomas + + PR fortran/98472 + * trans-array.c (gfc_conv_expr_descriptor): Include elemental + procedure pointers in the assert under the comment 'elemental + function' and eliminate the second, spurious assert. + +2021-09-10 Paul Thomas + + Backported from master: + 2021-04-20 Paul Thomas + + PR fortran/100110 + * trans-decl.c (gfc_get_symbol_decl): Replace test for host + association with a check that the current and symbol namespaces + are the same. + 2021-08-30 Paul Thomas Backported from master: diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d16471df3fd..51453249d91 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,56 @@ +2021-09-10 Paul Thomas + + Backported from master: + 2020-12-29 Paul Thomas + + PR fortran/97612 + * gfortran.dg/structure_constructor_17.f90: New test. + +2021-09-10 Paul Thomas + + Backported from master: + 2021-01-22 Paul Thomas + + PR fortran/98565 + * gfortran.dg/associated_target_7.f90 : New test. + +2021-09-10 Paul Thomas + + Backported from master: + 2020-12-27 Paul Thomas + + PR fortran/97694 + PR fortran/97723 + * gfortran.dg/select_rank_5.f90: New test. + +2021-09-10 Paul Thomas + + Backported from master: + 2021-01-07 Paul Thomas + + PR fortran/93701 + * gfortran.dg/associate_54.f90: New test. + * gfortran.dg/associate_55.f90: New test. + * gfortran.dg/associate_56.f90: New test. + +2021-09-10 Paul Thomas + + Backported from master: + 2021-01-27 Paul Thomas + + PR fortran/98472 + * gfortran.dg/elemental_function_5.f90 : New test. + +2021-09-10 Paul Thomas + + Backported from master: + 2021-04-20 Paul Thomas + + PR fortran/100110 + * gfortran.dg/pdt_31.f03: New test. + * gfortran.dg/pdt_26.f03: Reduce 'builtin_malloc' count from 9 + to 8. + 2021-09-06 Richard Biener Backported from master: