From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id A99B2385842C; Tue, 14 Mar 2023 09:53:36 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A99B2385842C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1678787616; bh=cAPfXEys/G0aDite5PR2i8qMgJbv1O/lyl6RkS50SAA=; h=From:To:Subject:Date:In-Reply-To:References:From; b=wWJfLFz1IVDk5lxYC+1VQil5eBoYUZQNRH2fDOn1ni+GR7prR0xNVeZ3hYxN+wNdi +9/cy8L67c5LnjAQrYGZWoq/DbJh9kyiWFt1ju2AZz/DFBEVzbmJJG/iD6k6WKoERG h6jwp5nzAwRpsW5c1DiCPqkmCXAs7E+l+QHHWguA= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/109005] [13 Regression] ICE during GIMPLE pass: ifcvt Date: Tue, 14 Mar 2023 09:53:34 +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: 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: 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=3D109005 --- Comment #24 from CVS Commits --- The master branch has been updated by Andre Simoes Dias Vieira : https://gcc.gnu.org/g:b109964ddb421cf481828a2f3465751a2bd6a8f6 commit r13-6654-gb109964ddb421cf481828a2f3465751a2bd6a8f6 Author: Andre Vieira Date: Tue Mar 14 09:51:38 2023 +0000 ifcvt: Lower bitfields only if suitable for scalar register [PR 109005] This patch fixes the condition check for eligilibity of lowering bitfie= lds, where before we would check for non-BLKmode types, in the hope of exclu= ding unsuitable aggregate types, we now check directly the representative is= not an aggregate type, i.e. suitable for a scalar register. gcc/ChangeLog: PR tree-optimization/109005 * tree-if-conv.cc (get_bitfield_rep): Replace BLKmode check with aggregate type check.=