From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id AF9593858283; Tue, 30 Jan 2024 08:34:12 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AF9593858283 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1706603652; bh=azXyzGdYt8QUqU++VjVjw7qVnqQBUm5LwQ3ut9CFkpU=; h=From:To:Subject:Date:In-Reply-To:References:From; b=gmBRF2kJ2IYIQcykWzGZFrJ3iasaxkXivn6JtINJLglKavr9PSSKxQmJJ4KZ8SP3C 5pl8KDoMbr0lNstQcddBnhcUiJLvvCDeLOKy+aJ8FUnubD7yULKEmPr6slZIoe2qHg 9Y26QhxP0TjdM50XMbWK7vvHEUuPgE+LJUcVk2Dg= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/113622] [11/12/13 Regression] ICE with vectors in named registers Date: Tue, 30 Jan 2024 08:34:07 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: ice-on-valid-code, testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: rguenth 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=3D113622 --- Comment #20 from GCC Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:47b81161c98cf2ff5495d4aa6386cc3c87f9d27b commit r14-8515-g47b81161c98cf2ff5495d4aa6386cc3c87f9d27b Author: Jakub Jelinek Date: Tue Jan 30 09:31:22 2024 +0100 testsuite: Fix up pr113622-{2,3}.c for i686-linux [PR113622] The 2 new tests FAIL for me on i686-linux: .../gcc/testsuite/gcc.target/i386/pr113622-2.c:5:14: error: data type of 'a' isn't suitable for a register .../gcc/testsuite/gcc.target/i386/pr113622-2.c:5:29: error: data type of 'b' isn't suitable for a register .../gcc/testsuite/gcc.target/i386/pr113622-2.c:5:44: error: data type of 'c' isn't suitable for a register The problem is that the tests use vectors of double, something added only in SSE2, while the testcases ask for just -msse which only provides vectors of floats. So, either it should be using floats instead of doubles, or we need to add -msse2 to dg-options. I've done the latter. 2024-01-30 Jakub Jelinek PR middle-end/113622 * gcc.target/i386/pr113622-2.c: Use -msse2 instead of -msse in dg-options. * gcc.target/i386/pr113622-3.c: Likewise.=