From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 2831C3858D28; Sat, 26 Feb 2022 00:17:02 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2831C3858D28 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 r12-7395] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: f62115c9b770a66c5378f78a2d5866243d560573 X-Git-Newrev: afeaaf4b3528212fcd24b213398e73938a2a308c Message-Id: <20220226001703.2831C3858D28@sourceware.org> Date: Sat, 26 Feb 2022 00:17:02 +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, 26 Feb 2022 00:17:03 -0000 https://gcc.gnu.org/g:afeaaf4b3528212fcd24b213398e73938a2a308c commit r12-7395-gafeaaf4b3528212fcd24b213398e73938a2a308c Author: GCC Administrator Date: Sat Feb 26 00:16:28 2022 +0000 Daily bump. Diff: --- gcc/ChangeLog | 88 +++++++++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/testsuite/ChangeLog | 58 ++++++++++++++++++++++++++++++++ 3 files changed, 147 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0006e1207d0..f3c47037035 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,91 @@ +2022-02-25 Jakub Jelinek + Marc Glisse + + PR tree-optimization/104675 + * match.pd (t * 2U / 2 -> t & (~0 / 2), t / 2U * 2 -> t & ~1): + Restrict simplifications to INTEGRAL_TYPE_P. + +2022-02-25 Jakub Jelinek + + PR target/104681 + * config/rs6000/vector.md (movmisalign): Use rs6000_emit_move. + +2022-02-25 Claudiu Zissulescu + + * config/arc/arc.cc (gen_compare_reg): Return NULL_RTX if the + comparison is not valid. + * config/arc/arc.md (movsicc): Fail if comparison is not valid. + (movdicc): Likewise. + (movsfcc): Likewise. + (movdfcc): Likewise. + +2022-02-25 Richard Biener + + PR tree-optimization/103037 + * tree-ssa-sccvn.h (alloc_vn_nary_op_noinit): Declare. + (vn_nary_length_from_stmt): Likewise. + (init_vn_nary_op_from_stmt): Likewise. + (vn_nary_op_compute_hash): Likewise. + * tree-ssa-sccvn.cc (alloc_vn_nary_op_noinit): Export. + (vn_nary_length_from_stmt): Likewise. + (init_vn_nary_op_from_stmt): Likewise. + (vn_nary_op_compute_hash): Likewise. + * tree-ssa-pre.cc (pre_expr_obstack): New obstack. + (get_or_alloc_expr_for_nary): Pass in the value-id to use, + (re-)compute the hash value and if the expression is not + found allocate it from pre_expr_obstack. + (phi_translate_1): Do not insert the NARY found in the + VN tables but build a PRE expression from the valueized + NARY with the value-id we eventually found. + (find_or_generate_expression): Assert we have an entry + for constant values. + (compute_avail): Insert not valueized expressions into + EXP_GEN using the value-id from the VN tables. + (init_pre): Allocate pre_expr_obstack. + (fini_pre): Free pre_expr_obstack. + +2022-02-25 Jakub Jelinek + + PR target/104674 + * config/i386/i386.h (enum ix86_stack_slot): Add SLOT_FLOATxFDI_387. + * config/i386/i386.md (splitter to floatdi2_i387_with_xmm): Use + SLOT_FLOATxFDI_387 rather than SLOT_TEMP. + +2022-02-25 Jakub Jelinek + + * warning-control.cc (get_nowarn_spec): Comment spelling fix. + +2022-02-25 Jakub Jelinek + + PR middle-end/104679 + * internal-fn.cc (expand_SPACESHIP): Call do_pending_stack_adjust. + +2022-02-25 Jakub Jelinek + + PR tree-optimization/104675 + * match.pd (-A - 1 -> ~A, -1 - A -> ~A): Don't simplify for + COMPLEX_TYPE. + +2022-02-25 Alexandre Oliva + + PR target/104121 + PR target/103302 + * expr.cc (emit_move_multi_word): Restore clobbers during LRA. + +2022-02-25 Alexandre Oliva + + PR middle-end/104540 + * dwarf2cfi.cc (cfi_oprnd_equal_p): Cope with NULL + dw_cfi_cfa_loc. + +2022-02-25 Alexandre Oliva + + PR tree-optimization/103856 + * gimple-harden-conditionals.cc (non_eh_succ_edge): Enable the + eh edge to be requested through an extra parameter. + (pass_harden_compares::execute): Copy PHI args in the EH dest + block for the new EH edge added for the inverted compare. + 2022-02-24 Palmer Dabbelt * doc/invoke.texi (RISC-V -mcmodel=medany): Document the degree diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 5dc2a23e275..fd6486afaf5 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220225 +20220226 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5e7e960a0d7..e6b856ea16b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,61 @@ +2022-02-25 Jakub Jelinek + Marc Glisse + + PR tree-optimization/104675 + * gcc.dg/pr104675-3.c : New test. + +2022-02-25 Jakub Jelinek + + PR target/104681 + * g++.dg/opt/pr104681.C: New test. + +2022-02-25 Jakub Jelinek + + * g++.dg/pr104540.C: Move to ... + * g++.target/i386/pr104540.C: ... here. + +2022-02-25 Martin Liska + + PR testsuite/104687 + * gcc.dg/lto/20090717_0.c: Fix asan error. + +2022-02-25 Richard Biener + + PR tree-optimization/103037 + * gcc.dg/torture/pr103037.c: New testcase. + +2022-02-25 Jakub Jelinek + + PR target/104674 + * gcc.target/i386/pr104674.c: New test. + +2022-02-25 Jakub Jelinek + + PR middle-end/104679 + * g++.dg/torture/pr104679.C: New test. + +2022-02-25 Jakub Jelinek + + PR tree-optimization/104675 + * gcc.dg/pr104675-1.c: New test. + * gcc.dg/pr104675-2.c: New test. + +2022-02-25 Alexandre Oliva + + PR tree-optimization/103845 + PR tree-optimization/104263 + * gcc.dg/pr103845.c: New. + +2022-02-25 Alexandre Oliva + + PR middle-end/104540 + * g++.dg/pr104540.C: New. + +2022-02-25 Alexandre Oliva + + PR tree-optimization/103856 + * g++.dg/pr103856.C: New. + 2022-02-24 Pat Haugen PR testsuite/100407