From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 07C343856949; Tue, 13 Sep 2022 02:48:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 07C343856949 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1663037333; bh=byhnLr+xa+5br/FtkebnTQ4iCBigUVE22FX/Qd6kGSs=; h=From:To:Subject:Date:In-Reply-To:References:From; b=t8hP0z3kDp8cq9uXbvL4jVlhDdNN4Yv40xEdv3pOyQOGurHfosh4vZfWP+XyrcZF5 /i3zfu1Gh2bxjqZ8RTAF05VHYrBnEg/19BzFa51MCxghbcp8ehrRvoRljjFggKsJoy Bgp2Es64vLi++hyW9Yx6BXKVKNFbw7zUZI0u2KqA= From: "asolokha at gmx dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/106905] [13 Regression] ia64: ICE in in vect_peel_nonlinear_iv_init, at tree-vect-loop.cc:8412 on zstd-1.5.2 since r13-2503-gc13223b790bbc5 Date: Tue, 13 Sep 2022 02:48:52 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: asolokha at gmx dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D106905 Arseny Solokha changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |asolokha at gmx dot com --- Comment #2 from Arseny Solokha --- It also can be reproduced for x86_64 when compiling the following testcase, reduced from gcc/testsuite/gcc.target/i386/pr103144-mul-2.c, w/ -march=3Dsilvermont -O2 -fvect-cost-model=3Ddynamic: void foo_mul_peel (int *a, int b) { int i; for (i =3D 0; i < 7; ++i) { b *=3D 2; a[i] =3D b; } }=