From patchwork Tue Jul 23 09:21:52 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vidya Praveen X-Patchwork-Id: 261001 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 90C442C00B9 for ; Tue, 23 Jul 2013 19:22:10 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=oKYt2AI0WacTxSsKl7quwn1dJki/3ssqShDKj3DcfCr57MVqkxMn2 j/k59lVf1h772LRunhM3DsmEJh7QRQaZWelZ8mmwmKCyR+7WZrD6/wwCJAumuaO1 UtpdOgkYMRtBo/QEzL94imICO3ft4sVPcV9m5HelU+AKIiqYFMRp4Y= 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:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=kqpEk5w6DYNXN66blwBj2FAUjUI=; b=OMuv56cdo4xf8IJYIr6j VPCsYRuuY1YRt7zGL6saAbMB12whE3zJ6QZ2+SplKegRgBeQ6Xr0LlRkoj4rPCX9 UUMWIbkN36iR796G8vz36jmesK31afZWvJOaMyUbDY3jmiCp4x6eNkoIDZ5Lly7j TtHEogObVPH68l+g7bshGRU= Received: (qmail 29105 invoked by alias); 23 Jul 2013 09:22:03 -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 29084 invoked by uid 89); 23 Jul 2013 09:22:02 -0000 X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, RDNS_NONE, SPF_PASS autolearn=no version=3.3.1 Received: from Unknown (HELO service87.mimecast.com) (91.220.42.44) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Tue, 23 Jul 2013 09:22:01 +0000 Received: from cam-owa2.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) by service87.mimecast.com; Tue, 23 Jul 2013 10:21:53 +0100 Received: from e103625-lin.cambridge.arm.com ([10.1.255.212]) by cam-owa2.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 23 Jul 2013 10:21:52 +0100 Date: Tue, 23 Jul 2013 10:21:52 +0100 From: Vidya Praveen To: gcc-patches@gcc.gnu.org Subject: [Patch] Fix selector for vect-iv-5.c Message-ID: <20130723092152.GB4787@e103625-lin.cambridge.arm.com> MIME-Version: 1.0 User-Agent: Mutt/1.5.21 (2010-09-15) X-MC-Unique: 113072310215301201 Content-Disposition: inline X-Virus-Found: No Hello gcc.dg/vect/vect-iv-5.c XPASSes for arm-*-* since gcc.dg/vect/*.c tests are always run with -ffast-math for arm-*-*. This patch makes xfail conditional for this test by adding effective target keyword !arm_neon_ok. OK for trunk? Regards VP --- gcc/testsuite/ChangeLog: 2013-07-22 Vidya Praveen * gcc.dg/vect/vect-iv-5.c: Make xfail conditional with !arm_neon_ok. diff --git a/gcc/testsuite/gcc.dg/vect/vect-iv-5.c b/gcc/testsuite/gcc.dg/vect/vect-iv-5.c index 1766ae6..8861095 100644 --- a/gcc/testsuite/gcc.dg/vect/vect-iv-5.c +++ b/gcc/testsuite/gcc.dg/vect/vect-iv-5.c @@ -36,5 +36,5 @@ int main (void) return main1 (); } -/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail *-*-* } } } */ +/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail {! arm_neon_ok } } } } */ /* { dg-final { cleanup-tree-dump "vect" } } */