From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 2EC743858D29; Sat, 25 May 2024 00:41:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2EC743858D29 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1716597711; bh=MRZL7Wy/5Qe4oczdiSIKm3IMEX2pUjeTiQJnFHjFC4o=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Ik7eaIBMuQe616OP+0kAJuEKC4s0NImO4MO7aF28Oey2NrFPjL/jxpgjYEIfzVAjO XWipSRiUY0cHOR8GzZUb/ePJyVD5ht8EjYMNyY0v6vcQTeDJLuLVq1Oi3lF+O1KVr2 0ImpSoQfISDmtAknpVFgborgxqFzV+IrUuBQMUwI= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/115221] [15 regression] ICE when building reiser4progs (propagate_updated_value, at gimple-range-cache.cc:1368) Date: Sat, 25 May 2024 00:41:50 +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: unknown X-Bugzilla-Keywords: 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: --- 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=3D115221 --- Comment #3 from Andrew Pinski --- This one still ICEs and it is closer to the original source: ``` typedef unsigned uint32_t; int cde40_t; int offset; void aal_test_bit(); uint32_t cde40_key_pol(); long cde40_offset_check(uint32_t pos) { cde40_key_pol(); if (cde40_t) return (offset - 2) % (((pos =3D=3D 3) ? 18 : 26)) !=3D 0; return 0; } void cde40_check_struct() { uint32_t i, j, to_compare; for (;; i++) { cde40_offset_check(i); if (to_compare =3D=3D 0) { if (i && cde40_key_pol()) ; to_compare =3D i; continue; } j =3D to_compare; for (; j < i; j++) aal_test_bit(); } } ```=