From patchwork Thu Nov 7 15:20:50 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cesar Philippidis X-Patchwork-Id: 289391 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)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id DF5032C00CE for ; Fri, 8 Nov 2013 02:21:52 +1100 (EST) 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:cc:subject:references :in-reply-to:content-type; q=dns; s=default; b=l6YX2JDF5yZ5GoiFT /ppHfr0kGk4BVp35kY7A7kMpjtrMGr1WCdIMB5Off47CEQ+O1r30zBM96hvpwtDP dfVhMrwntxFiWyAO/qlJCIobeRZSzZWHzKl8qHEtJmsDPgX+rOWY97cSmsQ1MQQ0 IqffFCVpFxehhp9JzpcuDxTl18= 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:cc:subject:references :in-reply-to:content-type; s=default; bh=ZbnTv0+F6HB9BT0/z+Eh37x hYeE=; b=JP1OOzxAYDia+JHQXUoF3x4PjVP5Jg/K2TLge6X1TMFfAA/hXxhOrcH QRHSxFGi3mfr/0cTAkiTHSYp6xxT+5a//sQSaioRnMaomOoZ/+2jBY+/0OE76hBo HI+BJ+Kfn1J62wwLuOn+xgD5iA0vfqnBox5bRuuXO0AygvB9Jmcs= Received: (qmail 13667 invoked by alias); 7 Nov 2013 15:21:41 -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 13650 invoked by uid 89); 7 Nov 2013 15:21:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=2.7 required=5.0 tests=AWL, BAYES_50, RDNS_NONE, SPAM_SUBJECT, URIBL_BLOCKED autolearn=no version=3.3.2 X-HELO: relay1.mentorg.com Received: from Unknown (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 07 Nov 2013 15:21:08 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1VeRO8-0002OI-Ao from Cesar_Philippidis@mentor.com ; Thu, 07 Nov 2013 07:20:52 -0800 Received: from SVR-ORW-FEM-03.mgc.mentorg.com ([147.34.97.39]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Thu, 7 Nov 2013 07:20:52 -0800 Received: from imac24.philippidis.net (147.34.91.1) by svr-orw-fem-03.mgc.mentorg.com (147.34.97.39) with Microsoft SMTP Server id 14.2.247.3; Thu, 7 Nov 2013 07:20:52 -0800 Message-ID: <527BAFD2.4030205@codesourcery.com> Date: Thu, 7 Nov 2013 07:20:50 -0800 From: Cesar Philippidis User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: "Joseph S. Myers" CC: , , "gcc-patches@gcc.gnu.org" Subject: Re: [PATCH] Add check for aarch64 in vect_cmdline_needed References: <527AD1E8.2040003@codesourcery.com> In-Reply-To: On 11/6/13, 5:06 PM, Joseph S. Myers wrote: > You should be testing aarch64*-*-* so as to match aarch64_be targets. Thank you for catching that. Please commit this new patch if is OK. I don't have SVN access. Thanks, Cesar 2013-11-06 Cesar Philippidis gcc/testsuite/ * lib/target-supports.exp (check_effective_target_vect_cmdline_neeed): Add aarch64 to the list of targets that do not need command line argument to enable SIMD. Index: gcc/testsuite/lib/target-supports.exp =================================================================== --- gcc/testsuite/lib/target-supports.exp (revision 423006) +++ gcc/testsuite/lib/target-supports.exp (working copy) @@ -1920,7 +1920,8 @@ proc check_effective_target_vect_cmdline_needed { || [check_effective_target_powerpc_altivec])) || ([istarget sparc*-*-*] && [check_effective_target_sparc_vis]) || [istarget spu-*-*] - || ([istarget arm*-*-*] && [check_effective_target_arm_neon]) } { + || ([istarget arm*-*-*] && [check_effective_target_arm_neon]) + || [istarget aarch64*-*-*] } { set et_vect_cmdline_needed_saved 0 } }