From patchwork Wed Dec 11 11:27:31 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Andre Vieira (lists)" X-Patchwork-Id: 1207605 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-515685-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=arm.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="dV82yfzx"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 47Xvmb6Hfhz9sPc for ; Wed, 11 Dec 2019 22:27:43 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to:cc :from:subject:message-id:date:mime-version:content-type; q=dns; s=default; b=AZYEaIz/OGUGJo8O5JL5kSEyuG7CWKESmW1NmBy2yL1bVbXMdn tXS61cmWRnSftB6jEidP1OUKcq9Usf90JwgL7/R3iCKjsKRSWSvo1N06X9BG2LfR OHNkyWVIsGi/dvXsMZ8nSFTmmP+Fz4g/KrBppJQGiNVZdb1uiuN1AWpfo= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to:cc :from:subject:message-id:date:mime-version:content-type; s= default; bh=y0uM2KL4xskpeHEqn1ZMAhWhqBM=; b=dV82yfzxwRMtj6HElpVr lSPy91ZMzuVDY+4Sem4QmFcWluDQuEGgq4md5rmVw/v911S3ICmveDsbtNnP+hSW 1uJegaeT5BOtM/iY3iHRbHdgdJxX9ARsMwPVP2EpFTHGgDCRdH3DMaavcBsIxNQC 7PoEZ/ZvfAxiTb011NVUOx8= Received: (qmail 113802 invoked by alias); 11 Dec 2019 11:27:35 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 113794 invoked by uid 89); 11 Dec 2019 11:27:35 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-24.2 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy= X-HELO: foss.arm.com Received: from foss.arm.com (HELO foss.arm.com) (217.140.110.172) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 11 Dec 2019 11:27:34 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id D5C5A1FB; Wed, 11 Dec 2019 03:27:32 -0800 (PST) Received: from [10.2.78.48] (e107157-lin.cambridge.arm.com [10.2.78.48]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 667133F6CF; Wed, 11 Dec 2019 03:27:32 -0800 (PST) To: gcc-patches Cc: Richard Biener , richard.sandiford@arm.com From: "Andre Vieira (lists)" Subject: [testsuite][arm] Remove xfail for vect-epilogues test Message-ID: <3a364ab6-9917-e9c7-522d-cd91e901c789@arm.com> Date: Wed, 11 Dec 2019 11:27:31 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.2.1 MIME-Version: 1.0 X-IsSubscribed: yes Hi, We can now vectorize an epilogue for this loop for arm too, so removing xfail. Is this OK for trunk? Wasn't entirely sure whether I could commit this under obvious. gcc/testsuite/ChangeLog: 2019-12-11 Andre Vieira * gcc.dg/vect/vect-epilogues.c: Remove xfail for arm. diff --git a/gcc/testsuite/gcc.dg/vect/vect-epilogues.c b/gcc/testsuite/gcc.dg/vect/vect-epilogues.c index 946666e918ff9d019f07c0d891a9148692f86c92..de95310a65eed78e1f75c4cd7581f9f7a86afd16 100644 --- a/gcc/testsuite/gcc.dg/vect/vect-epilogues.c +++ b/gcc/testsuite/gcc.dg/vect/vect-epilogues.c @@ -16,4 +16,4 @@ void pixel_avg( unsigned char *dst, int i_dst_stride, } } -/* { dg-final { scan-tree-dump "LOOP EPILOGUE VECTORIZED" "vect" { xfail { arm*-*-* } } } } */ +/* { dg-final { scan-tree-dump "LOOP EPILOGUE VECTORIZED" "vect" } } */