From patchwork Fri Aug 14 09:46:42 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kyrylo Tkachov X-Patchwork-Id: 507323 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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id C2A791401E7 for ; Fri, 14 Aug 2015 19:46:55 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=W9KTfpCq; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type; q= dns; s=default; b=l+MK5S+fOCYW3NWjvVwUDHh0xbPK+1+WDF6CBBKAOBa7cU Fa0dyVkf/A9fuiS7jcYzfzBTfwKGiui0Gkbrk5QCC0upoal7ONRQshe4gsAjGORQ psDh6te8OrDuz7xNlRR4WlnAiXqdf+yw27U2V66IJcpV8iwwRVJ/xA5wGqpgc= 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 :message-id:date:from:mime-version:to:subject:content-type; s= default; bh=jjEwDjmezub7y9UjWKHxeAgud54=; b=W9KTfpCq682vPoDC/VoH +TLDQJmUh7lajTxCrT6A9RsYdm+YaYWkgj4M2VAdDulaY5lk3LGc7ei4ow3XAidh 7oPB8aOghefXzGMQZ/IXo71IaVrF2Fu762vXsLbYEKZ+ZwzCllbbljF8FQDoc8z0 yvwBHSStOQKzgxCVTDj6Mvs= Received: (qmail 6826 invoked by alias); 14 Aug 2015 09:46:49 -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 6814 invoked by uid 89); 14 Aug 2015 09:46:48 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL, BAYES_00, SPF_PASS autolearn=ham version=3.3.2 X-HELO: eu-smtp-delivery-143.mimecast.com Received: from eu-smtp-delivery-143.mimecast.com (HELO eu-smtp-delivery-143.mimecast.com) (146.101.78.143) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 14 Aug 2015 09:46:47 +0000 Received: from cam-owa2.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.140]) by eu-smtp-1.mimecast.com with ESMTP id uk-mta-21-0UEYHKbRQbOiBaBzomjdYQ-1; Fri, 14 Aug 2015 10:46:42 +0100 Received: from [10.2.207.50] ([10.1.2.79]) by cam-owa2.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 14 Aug 2015 10:46:42 +0100 Message-ID: <55CDB902.9070203@arm.com> Date: Fri, 14 Aug 2015 10:46:42 +0100 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 Subject: [PATCH][AArch64][committed] Mark target_attr_1.c as compile-only X-MC-Unique: 0UEYHKbRQbOiBaBzomjdYQ-1 X-IsSubscribed: yes As mentioned at https://gcc.gnu.org/ml/gcc-patches/2015-08/msg00251.html some assemblers don't support -mcpu=thunderx, so the dg-do assemble test will FAIL. Mark this test as compile-only as assembling it is not essential to the functionality it tests. Committed as obvious with r226886. 2015-08-14 Kyrylo Tkachov * gcc.target/aarch64/target_attr_1.c: Make test compile-only. diff --git a/gcc/testsuite/gcc.target/aarch64/target_attr_1.c b/gcc/testsuite/gcc.target/aarch64/target_attr_1.c index b1d52a6..852ce1e 100644 --- a/gcc/testsuite/gcc.target/aarch64/target_attr_1.c +++ b/gcc/testsuite/gcc.target/aarch64/target_attr_1.c @@ -1,4 +1,4 @@ -/* { dg-do assemble } */ +/* { dg-do compile } */ /* { dg-options "-O2 -mcpu=thunderx -save-temps" } */ /* Test that cpu attribute overrides the command-line -mcpu. */