From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 110847 invoked by alias); 20 Nov 2015 13:33:34 -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 110830 invoked by uid 89); 20 Nov 2015 13:33:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ig0-f193.google.com Received: from mail-ig0-f193.google.com (HELO mail-ig0-f193.google.com) (209.85.213.193) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 20 Nov 2015 13:33:32 +0000 Received: by igbxf8 with SMTP id xf8so1456479igb.1 for ; Fri, 20 Nov 2015 05:33:30 -0800 (PST) X-Received: by 10.50.30.6 with SMTP id o6mr1880849igh.94.1448026410291; Fri, 20 Nov 2015 05:33:30 -0800 (PST) Received: from msticlxl57.ims.intel.com ([134.134.139.76]) by smtp.gmail.com with ESMTPSA id l98sm5263587ioi.3.2015.11.20.05.33.26 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 20 Nov 2015 05:33:29 -0800 (PST) Date: Fri, 20 Nov 2015 13:33:00 -0000 From: Kirill Yukhin To: Kyrill Tkachov Cc: Andreas Schwab , David Edelsohn , Jakub Jelinek , Joseph Myers , Jeff Law , GCC Patches Subject: Re: [PATCH, VECTOR ABI] Add __attribute__((__simd__)) to GCC. Message-ID: <20151120133253.GA64036@msticlxl57.ims.intel.com> References: <20151027140655.GC46998@msticlxl57.ims.intel.com> <20151027141505.GG478@tucnak.redhat.com> <20151028091601.GA53647@msticlxl57.ims.intel.com> <20151029085447.GP478@tucnak.redhat.com> <20151110084414.GA62112@msticlxl57.ims.intel.com> <20151110085804.GW5675@tucnak.redhat.com> <20151113115430.GA63972@msticlxl57.ims.intel.com> <20151118141103.GB25086@msticlxl57.ims.intel.com> <564F0EE8.1050901@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <564F0EE8.1050901@arm.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-11/txt/msg02490.txt.bz2 Hello Kyrill, On 20 Nov 12:15, Kyrill Tkachov wrote: > >gcc/tessuite/ > > * c-c++-common/attr-simd-3.c: Put xfail (PR68158) on dg-error. > > This test fails on bare-metal targets that don't support -fcilkplus or -pthread. > Would you consider moving them to the cilkplus testing directory or adding an appropriate > effective target check? I think so. I'll commit change in the bottom. gcc/testsuite/ * c-c++-common/attr-simd-3.c: Require Cilk Plus in effective target. > > Thanks, > Kyrill -- Thanks, K diff --git a/gcc/testsuite/c-c++-common/attr-simd-3.c b/gcc/testsuite/c-c++-common/attr-simd-3.c index 35dd4c0..c7533f0 100644 --- a/gcc/testsuite/c-c++-common/attr-simd-3.c +++ b/gcc/testsuite/c-c++-common/attr-simd-3.c @@ -1,3 +1,4 @@ +/* { dg-require-effective-target cilkplus } */ /* { dg-do compile } */ /* { dg-options "-fcilkplus" } */ /* { dg-prune-output "undeclared here \\(not in a function\\)|\[^\n\r\]* was not declared in this scope" } */