From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 21A2C398E434; Wed, 23 Sep 2020 10:19:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 21A2C398E434 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1600856392; bh=ydjzMVCh5WlFdqB9o5z9tvqbwk2hLnBih1ZzRBfomDQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=KfrYSKCKmRgPMMxsTcr5q5F+DTGyWOXyJGH7HysIPDdF/1MbvoC4BUW7xqMP7r3Wd 4J6yz/pl9A+D56SSQoiJlMPzA6zfmSu9m6R/XtCN18XOYP15gG++CGRB469nVx5a7j Qx6EUd9fnkAguGLp4/YGbN10K0NESXeXwVhc5OPQ= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/97173] [11 Regression] ICE in vectorizable_live_operation, at tree-vect-loop.c:8324 since r11-3025-g095d42feed09f880 Date: Wed, 23 Sep 2020 10:19: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: 11.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 11.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Sep 2020 10:19:52 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D97173 --- Comment #3 from CVS Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:52e5b3fd8ef1d1b3ff86e26bd0aa7266bd9767fd commit r11-3391-g52e5b3fd8ef1d1b3ff86e26bd0aa7266bd9767fd Author: Richard Biener Date: Wed Sep 23 10:42:48 2020 +0200 tree-optimization/97173 - extend assert in vectorizable_live_operation The condition we're expecting to eventually run into isn't fully captured by checking for CTORs, instead we can also run into the CTOR element conversion. 2020-09-23 Richard Biener PR tree-optimization/97173 * tree-vect-loop.c (vectorizable_live_operation): Extend assert to also conver element conversions. * gcc.dg/vect/pr97173.c: New testcase.=