From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id B743E3858C50; Fri, 10 Feb 2023 00:18:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B743E3858C50 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1675988300; bh=XYqYL7IHJCt5E3N24e/W35cNz7J/RrIT3rfdwt27YTg=; h=From:To:Subject:Date:From; b=raO8dz7Ng5bIypLg3R5U4JNC1VQKdDb9H10C7MxwB/Veb3Ki9oeF3BbZwncwsQhwx /YxA4vliMh4YaM1FoYAVEX2F2g9IuVAFBjVQ4GWjHn582BjbIsRLZTjiewVyEBNGqx iR2zg4bBr3BvfTJH6SMFw5hNNVeSMm1zNxJjlHfA= 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-5764] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: 67b82bc1b29b82e4577df9491793624f3a8eb12f X-Git-Newrev: e92e2c9671e9c7c42594f8d970cd1e30024a12db Message-Id: <20230210001820.B743E3858C50@sourceware.org> Date: Fri, 10 Feb 2023 00:18:20 +0000 (GMT) List-Id: https://gcc.gnu.org/g:e92e2c9671e9c7c42594f8d970cd1e30024a12db commit r13-5764-ge92e2c9671e9c7c42594f8d970cd1e30024a12db Author: GCC Administrator Date: Fri Feb 10 00:17:42 2023 +0000 Daily bump. Diff: --- gcc/ChangeLog | 54 +++++++++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 6 ++++++ gcc/c/ChangeLog | 5 +++++ gcc/cp/ChangeLog | 18 +++++++++++++++++ gcc/fortran/ChangeLog | 22 ++++++++++++++++++++ gcc/testsuite/ChangeLog | 52 +++++++++++++++++++++++++++++++++++++++++++++++ libgomp/ChangeLog | 10 +++++++++ 8 files changed, 168 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8cd8d075ac4..1d18352ecd6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,57 @@ +2023-02-09 Vladimir N. Makarov + + * ira.h (struct ira_reg_equiv_s): Add new field caller_save_p. + * ira.cc (validate_equiv_mem): Check memref address variance. + (no_equiv): Clear caller_save_p flag. + (update_equiv_regs): Define caller save equivalence for + valid_combine. + (setup_reg_equiv): Clear defined_p flag for caller save equivalence. + * lra-constraints.cc (lra_copy_reg_equiv): Add new arg + call_save_p. Use caller save equivalence depending on the arg. + (split_reg): Adjust the call. + +2023-02-09 Jakub Jelinek + + PR target/100758 + * common/config/i386/cpuinfo.h (get_zhaoxin_cpu): Formatting fixes. + (cpu_indicator_init): Call get_available_features for all CPUs with + max_level >= 1, rather than just Intel, AMD or Zhaoxin. Formatting + fixes. + +2023-02-09 Jakub Jelinek + + PR tree-optimization/108688 + * match.pd (bit_field_ref [bit_insert]): Simplify BIT_FIELD_REF + of BIT_INSERT_EXPR extracting exactly all inserted bits even + when without mode precision. Formatting fixes. + +2023-02-09 Andrew Pinski + + PR tree-optimization/108688 + * match.pd (bit_field_ref [bit_insert]): Avoid generating + BIT_FIELD_REFs of non-mode-precision integral operands. + +2023-02-09 Martin Liska + + PR target/100758 + * doc/extend.texi: Document that the function + does not work correctly for old VIA processors. + +2023-02-09 Andreas Schwab + + * lto-wrapper.cc (merge_and_complain): Handle + -funwind-tables and -fasynchronous-unwind-tables. + (append_compiler_options): Likewise. + +2023-02-09 Richard Biener + + PR tree-optimization/26854 + * tree-into-ssa.cc (update_ssa): Turn blocks_to_update to tree + view around insert_updated_phi_nodes_for. + * tree-ssa-alias.cc (maybe_skip_until): Allocate visited bitmap + in tree view. + (walk_aliased_vdefs_1): Likewise. + 2023-02-08 Gerald Pfeifer * doc/include/gpl_v3.texi: Change fsf.org to www.fsf.org. diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index afa750637c5..13a9e4dfacf 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230209 +20230210 diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog index dcd1cf55389..8744b5be1f7 100644 --- a/gcc/analyzer/ChangeLog +++ b/gcc/analyzer/ChangeLog @@ -1,3 +1,9 @@ +2023-02-09 David Malcolm + + PR analyzer/108733 + * state-purge.cc (get_candidate_for_purging): Add ADDR_EXPR + and MEM_REF. + 2023-02-08 David Malcolm PR analyzer/108704 diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index 498c33124d1..d4d88459627 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,8 @@ +2023-02-09 Tobias Burnus + + * c-parser.cc (c_parser_omp_allocate): Parse align + clause and check for restrictions. + 2023-02-08 Joseph Myers * c-typeck.cc (check_constexpr_init): Remove argument diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index c648820ec12..4c894ba8a13 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,21 @@ +2023-02-10 Marek Polacek + + PR c++/107079 + * call.cc (set_up_extended_ref_temp): Pass var to maybe_constant_init. + +2023-02-09 Tobias Burnus + + * parser.cc (cp_parser_omp_allocate): Parse align + clause and check for restrictions. + +2023-02-09 Jakub Jelinek + + PR c++/108698 + * mangle.cc (write_expression, write_template_arg): Handle + EXCESS_PRECISION_EXPR with REAL_CST operand as + write_template_arg_literal on fold_convert of the REAL_CST + to EXCESS_PRECISION_EXPR type. + 2023-02-06 Patrick Palka PR c++/107461 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 99ee582a87f..f0cca6ee20b 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,25 @@ +2023-02-09 Harald Anlauf + Steven G. Kargl + + PR fortran/69636 + PR fortran/103779 + * intrinsic.cc (gfc_convert_chartype): Recover on invalid character + kind in conversion instead of generating an internal error. + +2023-02-09 Tobias Burnus + + PR fortran/107424 + * trans-openmp.cc (struct dovar_init_d): Add 'sym' and + 'non_unit_incr' members. + (gfc_nonrect_loop_expr): New. + (gfc_trans_omp_do): Call it; use normal loop bounds + for unit stride - and only create local loop var. + +2023-02-09 Tobias Burnus + + * parse.cc (decode_omp_directive): Really ignore 'assumes' with + -fopenmp-simd. + 2023-02-08 Steve Kargl PR fortran/103259 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 81eeb459c3f..00f17ac3517 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,55 @@ +2023-02-10 Marek Polacek + + PR c++/107079 + * g++.dg/cpp0x/constexpr-nsdmi2.C: New test. + +2023-02-09 David Malcolm + + PR analyzer/108733 + * gcc.dg/analyzer/torture/uninit-pr108733.c: New test. + +2023-02-09 Vladimir N. Makarov + + * gcc.target/i386/pr103541.c: New. + * g++.target/i386/pr108711.C: New. + +2023-02-09 Harald Anlauf + Steven G. Kargl + + PR fortran/69636 + PR fortran/103779 + * gfortran.dg/pr103779.f90: New test. + +2023-02-09 Jakub Jelinek + + PR tree-optimization/108688 + * gcc.c-torture/compile/pr108688-1.c: Add PR number as comment. + * gcc.dg/pr108688.c: New test. + +2023-02-09 Andrew Pinski + + PR tree-optimization/108688 + * gcc.c-torture/compile/pr108688-1.c: New test. + +2023-02-09 Tobias Burnus + + PR fortran/107424 + * gfortran.dg/goacc/privatization-1-compute-loop.f90: Update dg-note. + * gfortran.dg/goacc/privatization-1-routine_gang-loop.f90: Likewise. + +2023-02-09 Tobias Burnus + + * c-c++-common/gomp/allocate-5.c: Extend for align clause. + +2023-02-09 Tobias Burnus + + * gfortran.dg/gomp/openmp-simd-8.f90: New test. + +2023-02-09 Jakub Jelinek + + PR c++/108698 + * g++.dg/cpp0x/pr108698.C: New test. + 2023-02-08 Joseph Myers * gcc.dg/c2x-constexpr-1.c: Test initialization of constexpr diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 46f665b93d0..d66c8c8fa81 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,13 @@ +2023-02-09 Tobias Burnus + + PR fortran/107424 + * testsuite/libgomp.fortran/non-rectangular-loop-1.f90: New test. + * testsuite/libgomp.fortran/non-rectangular-loop-1a.f90: New test. + * testsuite/libgomp.fortran/non-rectangular-loop-2.f90: New test. + * testsuite/libgomp.fortran/non-rectangular-loop-3.f90: New test. + * testsuite/libgomp.fortran/non-rectangular-loop-4.f90: New test. + * testsuite/libgomp.fortran/non-rectangular-loop-5.f90: New test. + 2023-02-07 Thomas Schwinge * testsuite/libgomp.fortran/reverse-offload-6.f90: Fix nvptx