From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 57F1E3858CD1; Wed, 28 Jun 2023 21:19:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 57F1E3858CD1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1687987172; bh=1CvKCzoTH8HeVwHiMkkHOL5/6bhaG+AXyiCSj4hBQoU=; h=From:To:Subject:Date:In-Reply-To:References:From; b=gli/SZ8mqe2SV6JD/IfKchBMhhAm8Fi9mtLEdQbXsGRpomWJ6nzQv5Udt3velCmOl uRXONpgtR37t8XbMjUYbVjmAfMabwKy9VumSKXfmpUJpXdfqyZrwLeh+/vELULfwOd E8KO1hErZDeai7rgSEDanr01D/F+kFIrXqmVbX30= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/110144] cris-unknown-elf cross build fails with ICE if RTL checking is enabled Date: Wed, 28 Jun 2023 21:19:31 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: hp 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=3D110144 --- Comment #2 from CVS Commits --- The master branch has been updated by Hans-Peter Nilsson : https://gcc.gnu.org/g:c15905da939fd5cf6ccc3f19f3ab273525f34f98 commit r14-2173-gc15905da939fd5cf6ccc3f19f3ab273525f34f98 Author: Hans-Peter Nilsson Date: Wed Jun 28 03:01:08 2023 +0200 CRIS: Don't apply PATTERN to insn before validation (PR 110144) Oops. The validation was there, but PATTERN was applied before that. Noticeable only with rtl-checking (for example as in the report: "--enable-checking=3Dyes,rtl") as this statement was only a (one of many) straggling olde-C declare-and-initialize-at-beginning-of-block thing. PR target/110144 * config/cris/cris.cc (cris_postdbr_cmpelim): Don't apply PATTE= RN to insn before validating it.=