From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 8AC6C3850B34; Tue, 6 Dec 2022 12:08:55 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8AC6C3850B34 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1670328535; bh=eChmw5aeeV9zN0aQAesmYSNiVAasJdcsMQAHY18Lxsk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=X7dGONyvwKOk7Sl88MCC2/6/uD4tX0rbSgRjR/+wwO/YE7DylzpPQmQ0Z4+qBAZQP nZJ1AU1/2YkgJO8LQsHmALX0szUiBxNaJC1Mm8LHMq069L65ubUclKd7SOlg05oO5e 1q/vjx+RSXwvImY+8JEchJDyUDnP/dHXBnTpEZVI= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/107987] [12/13 Regression] MVE vcmpq vector-scalar can trigger ICE Date: Tue, 06 Dec 2022 12:08:55 +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: 12.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: avieira at gcc dot gnu.org X-Bugzilla-Target-Milestone: 12.3 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=3D107987 --- Comment #1 from CVS Commits --- The master branch has been updated by Andre Simoes Dias Vieira : https://gcc.gnu.org/g:ed34c3bc3428bce663d42e9eeda10bc0c5d56d5c commit r13-4506-ged34c3bc3428bce663d42e9eeda10bc0c5d56d5c Author: Andre Vieira Date: Tue Dec 6 12:06:33 2022 +0000 arm: Fix MVE's vcmp vector-scalar patterns [PR107987] This patch surrounds the scalar operand of the MVE vcmp patterns with a vec_duplicate to ensure both operands of the comparision operator have = the same (vector) mode. gcc/ChangeLog: PR target/107987 * config/arm/mve.md (mve_vcmpq_n_, @mve_vcmpq_n_f): Apply vec_duplicate to scalar operand. gcc/testsuite/ChangeLog: * gcc.target/arm/mve/pr107987.c: New test.=