From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 4E63D3856B7F; Tue, 6 Dec 2022 11:17:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4E63D3856B7F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1670325434; bh=k3FmLNiAh6hBQpQOgTQSthRDKVIWwFCczXk4vwW3zGk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=eiXWbiCUY6kL3NQ0dxN8IxXL4j1RydcJtRDqhAAozcALeuqsExK1d4HQUEWuCBY+u f3kDqpWlB2NJZkskMwdwOBc+v/b+22QH4gTdyXjykSPI0iuwtWAD3Xo/2Lc7bFmwca d2B3DSpwI49yjJY3Ff4tNhvW7IVd5LFcSmWB/4O8= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/107969] ICE in extract_insn, at recog.cc:2791 since r13-3292-gc2565a31c1622ab0 Date: Tue, 06 Dec 2022 11:17:12 +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: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal 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: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.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=3D107969 --- Comment #5 from CVS Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:bcf89f05f7b0b1732553e224548f1de55321e437 commit r13-4505-gbcf89f05f7b0b1732553e224548f1de55321e437 Author: Jakub Jelinek Date: Tue Dec 6 12:16:37 2022 +0100 i386: Fix up expander conditions on cbranchbf4 and cstorebf4 [PR107969] With -msoft-float we ICE on __bf16 comparisons, because the insns we want to use under the hood (cbranchsf4 and cstoresf4) after performing the fast extensions aren't available. The following patch copies the conditions from the c*sf4 expanders to the corresponding c*bf4 expanders. 2022-12-06 Jakub Jelinek PR target/107969 * config/i386/i386.md (cbranchbf4, cstorebf4): Guard expanders with the same condition as cbranchsf4 or cstoresf4 expanders. * gcc.target/i386/pr107969.c: New test.=