From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 34C703858D35; Mon, 20 Nov 2023 10:14:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 34C703858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1700475277; bh=+b3c/YKGffXjydFIUz1J2V9inVy2NG/Bwe0KiXZih9c=; h=From:To:Subject:Date:In-Reply-To:References:From; b=NyLMPL5hmwtkliDC5Sx+kUrqJmtBe/JZ178MS5cthlL0Yd9rUxP+x6Gk5oBI5KhnC GcQhnY/D/CSITYIaQsxQj0q0wLnuKHHXJpcC1RXiZXBMePWrg+EyEa9p29Ehdes2pk MiiK55dM40aKWxZ+J6f+P0EhdZeznxQBvtFERD5s= From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/112618] [13/14 Regression] internal compiler error: in expand_MASK_CALL, at internal-fn.cc:4529 Date: Mon, 20 Nov 2023 10:14:36 +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.2.1 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth 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: 13.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to blocked bug_status version 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=3D112618 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|unassigned at gcc dot gnu.org |rguenth at gcc dot = gnu.org Blocks| |53947 Status|NEW |ASSIGNED Version|unknown |13.2.1 --- Comment #2 from Richard Biener --- Confirmed. We're not marking the .MASK_CALL as relevant which is possibly OK since 'bar' is const. But we also fail to elide it. /* For if-conversion of inbranch SIMD clones. */ DEF_INTERNAL_FN (MASK_CALL, ECF_NOVOPS, NULL) ECF_NOVOPS is a bit heavy. We're "removing" scalar stmts in some places but do not care about not relevant ones. I have a patch. Referenced Bugs: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D53947 [Bug 53947] [meta-bug] vectorizer missed-optimizations=