From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C87AB385801F; Tue, 19 Dec 2023 09:37:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C87AB385801F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1702978652; bh=gSMPoA6ZBdSZHDOsPYQPaf/D+EFi6mnwmWXx405VyJg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=qdojVMUvGwP8PHPISAQ9YOoFIXm5pxEkSvStXKLv99W/CZ54GDdCxJeEoLrQPw5tH KtAYV7orWFBgqgjpyfOt8NwgUeHzh8PGrknTMjs2KKcuzNQ7GnYVZOiX8KaSF8Ae6G Ppy4D//acflhGIgsgX17wre0lbL6TEBoMVt2bNWE= 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:37:32 +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 #19 from GCC Commits --- The releases/gcc-12 branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:08a9df82bc2958df1c5508a0352d31a29c0ebe74 commit r12-10061-g08a9df82bc2958df1c5508a0352d31a29c0ebe74 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)=