From patchwork Fri Oct 16 11:26:10 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alan Lawrence X-Patchwork-Id: 531237 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (unknown [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 B772E1402BF for ; Fri, 16 Oct 2015 22:28:59 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=KpjOdIsh; 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:from :to:subject:date:message-id:content-type :content-transfer-encoding; q=dns; s=default; b=Qji05MccXZwhBZMT 9t/ytTUgaZo3O3GVOZKBaCH/iQaH/o+Oj68nt3II3bweyi+lARzWzdWH07WvOeNh /zLsDVoghB2jp9ZmbcU9i7gf8TTD5+6qVpjNPi3+Ja0s/WbyLI16prGjnxti4Afj FuwWGwjFrFgJ0wokCOHa68NRAhw= 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:from :to:subject:date:message-id:content-type :content-transfer-encoding; s=default; bh=PNyizTzX8tx4OboZtbh31H tjio4=; b=KpjOdIshSm4vrt5/qJ4g7uBP0ETCvP9lWHw7DF4LJX6qL6EwGLSqVS a0oGBBuRnm8mDV30WCh3tN8fHZ6Z5NwWE387Z4yThqPM+MV8yEWd3wlAf7UwXPfv 3Y4pJkNfRZAQ3oyjF03g9LL05mIun3YwBpylk62LuVwMzD62hNL0Q= Received: (qmail 30537 invoked by alias); 16 Oct 2015 11:28:52 -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 30520 invoked by uid 89); 16 Oct 2015 11:28:50 -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 autolearn=ham version=3.3.2 X-HELO: eu-smtp-delivery-143.mimecast.com Received: from Unknown (HELO eu-smtp-delivery-143.mimecast.com) (207.82.80.143) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 16 Oct 2015 11:26:38 +0000 Received: from cam-owa1.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.140]) by eu-smtp-1.mimecast.com with ESMTP id uk-mta-18-Ay1P7K0cT6KR_so5Af30IA-1; Fri, 16 Oct 2015 12:26:21 +0100 Received: from arm.com ([10.1.2.79]) by cam-owa1.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 16 Oct 2015 12:26:20 +0100 From: Alan Lawrence To: gcc-patches@gcc.gnu.org Subject: [PATCH][Testsuite] Turn on 64-bit-vector tests for AArch64 Date: Fri, 16 Oct 2015 12:26:10 +0100 Message-Id: <1444994770-24297-1-git-send-email-alan.lawrence@arm.com> X-MC-Unique: Ay1P7K0cT6KR_so5Af30IA-1 X-IsSubscribed: yes This enables tests bb-slp-11.c and bb-slp-26.c for AArch64. Both of these are currently passing on little- and big-endian. (Tested on aarch64-none-linux-gnu and aarch64_be-none-elf). OK for trunk? gcc/testsuite/ChangeLog: * lib/target-supports.exp (check_effective_target_vect64): Add AArch64. --- gcc/testsuite/lib/target-supports.exp | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index 3088369..bd03108 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -4762,6 +4762,7 @@ proc check_effective_target_vect64 { } { if { ([istarget arm*-*-*] && [check_effective_target_arm_neon_ok] && [check_effective_target_arm_little_endian]) + || [istarget aarch64*-*-*] || [istarget sparc*-*-*] } { set et_vect64_saved 1 }