From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 7B92C385DC0D; Tue, 19 Dec 2023 09:45:30 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7B92C385DC0D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1702979130; bh=Ne91N4Gc4pfSvZ1KzPdu/hWgvR2u9HdFq2GE/RW1CiU=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ipdQQ+6f+gq67qbHddERruhsCpVXQvzef1Ni6Hczg6lBItPGUSlLCmIWlo3B9oJFb RWIZkPtSucza36ik2JT8m4FEmDXbv7CNcub0FjmGPbFQWSJpxYlC9fCXBB3oNAXRVW Y0Ft4JWX3KSY7uNOt/VdFw0VR78eaITVZXDsjR7w= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/112816] [11/12 Regression] ICE unrecognizable_insn with __builtin_signbit and returning struct with int[4] Date: Tue, 19 Dec 2023 09:45:30 +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: 11.4.0 X-Bugzilla-Keywords: ice-on-valid-code 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: 11.5 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=3D112816 --- Comment #20 from GCC Commits --- The releases/gcc-11 branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:d9b7e78dae13945dd9b296f2cca67650da0f869d commit r11-11159-gd9b7e78dae13945dd9b296f2cca67650da0f869d Author: Jakub Jelinek Date: Tue Dec 19 10:24:33 2023 +0100 i386: Fix mmx.md signbit expanders [PR112816] Apparently when looking for "signbit2" vector expanders, I've only looked at sse.md and forgot mmx.md, which has another one and the following patch still ICEd. 2023-12-19 Jakub Jelinek PR target/112816 * config/i386/mmx.md (signbitv2sf2): Force operands[1] into a R= EG. * gcc.target/i386/sse2-pr112816-2.c: New test. (cherry picked from commit 80e1375ed7a7a05a5a60a57e72c5ad5eba005798)=