From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13865 invoked by alias); 31 Jan 2018 09:46:45 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 13856 invoked by uid 89); 31 Jan 2018 09:46:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_LAZY_DOMAIN_SECURITY,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy= X-HELO: foss.arm.com Received: from usa-sjc-mx-foss1.foss.arm.com (HELO foss.arm.com) (217.140.101.70) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 31 Jan 2018 09:46:37 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 3591E1435; Wed, 31 Jan 2018 01:46:35 -0800 (PST) Received: from [10.2.207.77] (e100706-lin.cambridge.arm.com [10.2.207.77]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 5D4753F24D; Wed, 31 Jan 2018 01:46:34 -0800 (PST) Message-ID: <5A719078.2070405@foss.arm.com> Date: Wed, 31 Jan 2018 10:09:00 -0000 From: Kyrill Tkachov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: "gcc-patches@gcc.gnu.org" CC: Marcus Shawcroft , "Richard Earnshaw (lists)" , James Greenhalgh Subject: [PATCH][AArch64] PR tree-optimization/64946: XFAIL gcc.target/aarch64/vect-abs-compile.c Content-Type: multipart/mixed; boundary="------------020701020305010605040309" X-SW-Source: 2018-01/txt/msg02421.txt.bz2 This is a multi-part message in MIME format. --------------020701020305010605040309 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-length: 389 Hi all, This test has been failing since forever, it has never passed AFAIK. The PR details the vectoriser deficiency. I propose we xfail this with a reference to the PR. Ok for trunk? Thanks, Kyrill 2018-01-31 Kyrylo Tkachov PR tree-optimization/64946 * gcc.target/aarch64/vect-abs-compile.c: XFAIL byte and half-word scan-assembler checks. --------------020701020305010605040309 Content-Type: text/x-patch; name="aarch64-xfail.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="aarch64-xfail.patch" Content-length: 823 diff --git a/gcc/testsuite/gcc.target/aarch64/vect-abs-compile.c b/gcc/testsuite/gcc.target/aarch64/vect-abs-compile.c index 19082d73ea8530a277013fec252a88e8bd1dcc4b..856e7a738e5efbdc79b5b6200c1048ea1d6583b9 100644 --- a/gcc/testsuite/gcc.target/aarch64/vect-abs-compile.c +++ b/gcc/testsuite/gcc.target/aarch64/vect-abs-compile.c @@ -6,7 +6,8 @@ #include "vect-abs.x" -/* { dg-final { scan-assembler "abs\\tv\[0-9\]+\.16b" } } */ -/* { dg-final { scan-assembler "abs\\tv\[0-9\]+\.8h" } } */ +/* XFAIL due to PR tree-optimization/64946. */ +/* { dg-final { scan-assembler "abs\\tv\[0-9\]+\.16b" { xfail *-*-* } } } */ +/* { dg-final { scan-assembler "abs\\tv\[0-9\]+\.8h" { xfail *-*-* } } } */ /* { dg-final { scan-assembler "abs\\tv\[0-9\]+\.4s" } } */ /* { dg-final { scan-assembler "abs\\tv\[0-9\]+\.2d" } } */ --------------020701020305010605040309--