From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 5DDC6385771D; Tue, 19 Dec 2023 09:25:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5DDC6385771D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1702977906; bh=z6hWWFhh9qaGT3cgWX+rDpc2KNbwDBdjvxFaoqnPfqo=; h=From:To:Subject:Date:In-Reply-To:References:From; b=x6VjKBxtgRtGLjtcLUTbgZzD8HfABXiCRFe7L1/uWkUy+fnOZrA7FXztFHRprlDpW GxO0UpCvKxnpO/AD8NSyOVx+kHKcApMNOj+G/a737IJiclwWdzA9mIpqrD9V1a2K5C 3WjGR7ifZ9Kv3+ct0eOnzy8MGIwcO2CBIQdCHEAM= 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:25:04 +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 #17 from GCC Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:80e1375ed7a7a05a5a60a57e72c5ad5eba005798 commit r14-6679-g80e1375ed7a7a05a5a60a57e72c5ad5eba005798 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 two further ones and the following patch still ICEd. 2023-12-19 Jakub Jelinek PR target/112816 * config/i386/mmx.md (signbitv2sf2, signbit2): Force operands[1] into a REG. * gcc.target/i386/sse2-pr112816-2.c: New test.=