From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 35BB83858298; Tue, 9 Jan 2024 22:21:30 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 35BB83858298 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1704838890; bh=txN+Eal61QRm8OAT/oQBQ6dhNUhJvTP09jFUNbYnuNQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=kVFcQ0VoypASQ4o5OPGFQbLTCrTsCIF+/IgDgZo+aLm70UEX8fJqho0CD1Kg/zHZR gDZyrS4vUI5xuYCQya+2ROx+V0c5QtDKbQKgIi4pZVtLWLqmJKCOHxoxPYhJsxTd5/ OzsNejOpRvd9/1zKeNaL8doPqGocI0aENMN1oPvE= From: "tnfchris at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/113144] [14 regression] ICE when building dpkg-1.21.15 in verify_dominators (error: dominator of 9 should be 48, not 12) Date: Tue, 09 Jan 2024 22:21:29 +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: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: tnfchris at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: tnfchris at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.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=3D113144 --- Comment #15 from Tamar Christina --- (In reply to Martin Jambor from comment #13) > The testcase below segfaults when compiled with master configured with > release checking. However, it is very likely affected by this bug (it > fails with checking compiler like testcases for this issue do) and so > I did not want to file a new bug for a testcase where we know we're > currently having problems keeping dominance information. >=20 > Tamar, after you fix this issue, can you please check if the following > segfaults when compiled with -std=3Dgnu99 -fpermissive -fgnu89-inline > -Ofast -march=3Dznver2 -fprofile-generate -S ? >=20 yeah, with my current patches it works fine: > ./install/bin/gcc segf.c -std=3Dgnu99 -fpermissive -fgnu89-inline -Ofast = -march=3Dznver2 -fprofile-generate -S -w; and echo $status 0 I'll commit the bulk tomorrow. Thanks for the testcase!=