From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 583193858400; Thu, 30 Dec 2021 00:17:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 583193858400 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-6148] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: 62c3f75fd29e93054f3aeb8a623fd52c98c3db0b X-Git-Newrev: be475aa0aae468df7370db9cfa8590776d901d1d Message-Id: <20211230001722.583193858400@sourceware.org> Date: Thu, 30 Dec 2021 00:17:22 +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: Thu, 30 Dec 2021 00:17:22 -0000 https://gcc.gnu.org/g:be475aa0aae468df7370db9cfa8590776d901d1d commit r12-6148-gbe475aa0aae468df7370db9cfa8590776d901d1d Author: GCC Administrator Date: Thu Dec 30 00:16:43 2021 +0000 Daily bump. Diff: --- gcc/ChangeLog | 59 +++++++++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/fortran/ChangeLog | 10 +++++++++ gcc/testsuite/ChangeLog | 22 ++++++++++++++++++ libgfortran/ChangeLog | 4 ++++ 5 files changed, 96 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3c375025784..6e8901ce9c2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,62 @@ +2021-12-29 Ian Lance Taylor + + PR go/103847 + * godump.c (go_force_record_alignment): Name the alignment + field "_". + +2021-12-29 Jakub Jelinek + + PR debug/103742 + * tree-ssa-dce.c (make_forwarders_with_degenerate_phis): If any phi + argument is not CONSTANT_CLASS_P or SSA_NAME and any arguments are + equal, change second from hash value to lowest dest_idx from the + edges which have equal argument and resort to ensure -fcompare-debug + stability. + +2021-12-29 Martin Liska + + * collect2.c (main): Add ld.mold. + * common.opt: Add -fuse-ld=mold. + * doc/invoke.texi: Document it. + * gcc.c (driver_handle_option): Handle -fuse-ld=mold. + * opts.c (common_handle_option): Likewise. + +2021-12-29 Uroš Bizjak + + * config/i386/sse.md (vec_pack_float_): + Perform gen_avx512dq_floatv2div2sf2 into a + pseudo and emit move insn into operands[0]. + (fix_truncv2sfv2di2): Use lowpart_subreg + instead of simplify_gen_subreg. + (trunc2): Perform + gen_avx512vl_truncatevqi2 into a + pseudo and emit move insn into operands[0]. + (trunc2): Perform + gen_avx512vl_truncatevhi2 into a + pseudo and emit move insn into operands[0]. + (truncv2div2si2): Perform gen_avx512vl_truncatev2div2si2 into a + pseudo and emit move insn into operands[0]. + (truncv8div8qi2): Perform gen_avx512f_truncatev8div16qi2 into a + pseudo and emit move insn into operands[0]. + (v8qiv8hi2): Use lowpart_subreg + instead of simplify_gen_subreg. + (v8qiv8si2): Ditto. + (v4qiv4si2): Ditto. + (v4hiv4si2): Ditto. + (v8qiv8di2): Ditto. + (v4qiv4di2): Ditto. + (v2qiv2di2): Ditto. + (v4hiv4di2): Ditto. + (v2hiv2di2): Ditto. + (v2siv2di2): Ditto. + +2021-12-29 Xionghu Luo + + PR tree-optimization/103793 + * tree-ssa-loop-split.c (fix_loop_bb_probability): New function. + (split_loop): Use multiply to scale loop1's exit probability. + (do_split_loop_on_cond): Call fix_loop_bb_probability. + 2021-12-28 Jason Merrill PR c++/99968 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 252ebb288a0..86d98455ff7 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20211229 +20211230 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 65f52f39164..c982afb1849 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,13 @@ +2021-12-29 Harald Anlauf + + PR fortran/102332 + * expr.c (gfc_get_variable_expr): Avoid NULL pointer dereferences + during handling of errors with invalid uses of CLASS variables. + * match.c (select_type_set_tmp): Likewise. + * primary.c (gfc_match_varspec): Likewise. + * resolve.c (resolve_variable): Likewise. + (resolve_select_type): Likewise. + 2021-12-28 Francois-Xavier Coudert PR fortran/103828 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6c6a732eb20..53346a867de 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,25 @@ +2021-12-29 Jakub Jelinek + + PR debug/103742 + * g++.dg/opt/pr103742.C: New test. + +2021-12-29 Francois-Xavier Coudert + + PR testsuite/47334 + PR testsuite/103823 + * lib/prune.exp: Prune some warnings related to LTO and + visibility. + +2021-12-29 Harald Anlauf + + PR fortran/102332 + * gfortran.dg/pr102332.f90: New test. + +2021-12-29 Xionghu Luo + + PR tree-optimization/103793 + * gcc.dg/pr103793.c: New test. + 2021-12-28 Francois-Xavier Coudert PR fortran/103828 diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 780d083ee83..96e55f1d07a 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,7 @@ +2021-12-29 Francois-Xavier Coudert + + * ieee/ieee_helper.c: Fix enum values. + 2021-12-27 Francois-Xavier Coudert PR libfortran/98076