From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id AF5EF395B82A; Wed, 16 Nov 2022 16:08:04 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AF5EF395B82A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1668614884; bh=/s+CRvajjuGyWYxgXxOjq5aJiGD4DJSeApxVgSgMv0k=; h=From:To:Subject:Date:In-Reply-To:References:From; b=A6Sfim0T7J1MeBNKZlg3oOEOzOAleQNr1objASZO+pzzNHflFmLRyBI08SENFnaAP 0Bk8zAyL6JTIl/goqH/n6LaJUcpZBljLnlSQz9i4bkkczXlyiAMhd+EtLXHuNB6P8k khgGETpB/oo/MXG11VaycCX9s+6l7zba58MozmY8= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/107686] [12/13 Regression] ICE: verify_gimple failed (invalid types in nop conversion) with _Decimal64 vector Date: Wed, 16 Nov 2022 16:08:04 +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: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 12.3 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107686 --- Comment #5 from CVS Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:246bbdaa5f536b7a199dda9860c473137f40d622 commit r13-4102-g246bbdaa5f536b7a199dda9860c473137f40d622 Author: Richard Biener Date: Wed Nov 16 15:27:13 2022 +0100 tree-optimization/107686 - fix bitfield ref through vec_unpack optimiza= tion The following propely restricts the bitfield access to integral types when we look through VEC_UNPACK with the intent to emit a widening conversion. PR tree-optimization/107686 * tree-ssa-forwprop.cc (optimize_vector_load): Restrict VEC_UNPACK support to integral typed bitfield refs. * gcc.dg/pr107686.c: New testcase.=