From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 646263858D20; Mon, 12 Aug 2024 18:54:12 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 646263858D20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1723488852; bh=zgiy9/vc65lolcsnHYhwFSsKFwK9HmuNJVw9sLt16Eg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=LUGLU1QgOyYUOtyTZCXgCHrHPJM8bpmZ8WwlXDvcTxxNqFcQmKSmjSCfddR1VWx62 Mm/L4XRVKrqlx5MreZd+LWRhRZHjaDmXpaMApQ0tX99mvh/eCbuS85UNe0FQWimd4O pP0TTdAwpHa3RmSPDkugtVC6lB7RA4dC2dffcRfw= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/116348] [15 regression] ICE when building gavl-1.4.0 with -O3 -march=znver4 Date: Mon, 12 Aug 2024 18:54:12 +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: 15.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 15.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: see_also 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=3D116348 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://gcc.gnu.org/bugzill | |a/show_bug.cgi?id=3D116142 --- Comment #2 from Andrew Pinski --- (In reply to Sam James from comment #1) > Reduced: > ``` > int *a; > int b; > long c, d; > void(e)(int f) { > for (; f; f++) { > d +=3D (long)a[f] * b; > c +=3D (long)a[f] * 3; > } > } > ``` This makes it more likely it is the same as PR 116314 even. This is a widen= ding dot product summation going on.=