From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id DBDBB3858414; Fri, 23 Feb 2024 12:16:26 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DBDBB3858414 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1708690586; bh=vf/5wzZp/AHrtvhJIYnQUnz/s1uD9v9IOGA+xLWt+r0=; h=From:To:Subject:Date:In-Reply-To:References:From; b=U+uiKbp1P0P+2TbODnvICxjyonp5UT/btG/WAcr7nmrctlADmBZ69gBWJ6XoicZ/q CsJyK9Uc4II7S7pchcEZ96B+ggatv6VC0jZe76qCNajdxEv44/8E2PEXp+jmMGLkwr WXcPyu2t35DmXTNPdoEhIi6bHZcUKvZATO5kuSf0= From: "sjames at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/114070] [12/13/13 regression] ICE when building git-2.43.2 with -mcpu=niagara4 -fno-vect-cost-model Date: Fri, 23 Feb 2024 12:16:26 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: sjames 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: 12.4 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=3D114070 --- Comment #4 from Sam James --- reduced: ``` struct name_entry { int mode; } traverse_trees(), *unresolved_n; void unresolved(int i, unsigned dirmask, unsigned mask) { for (; i; i++) { mask |=3D 1; if (!unresolved_n[i].mode || unresolved_n[i].mode & 70000) dirmask |=3D i; } if (dirmask =3D=3D mask) traverse_trees(); } ``` and yeah, sorry Richard - I can't reproduce via cross either on my build. I wasn't aware of that configure test..=