From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27446 invoked by alias); 1 Jul 2014 12:13:56 -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 27399 invoked by uid 89); 1 Jul 2014 12:13:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ve0-f177.google.com Received: from mail-ve0-f177.google.com (HELO mail-ve0-f177.google.com) (209.85.128.177) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 01 Jul 2014 12:13:50 +0000 Received: by mail-ve0-f177.google.com with SMTP id i13so9406377veh.22 for ; Tue, 01 Jul 2014 05:13:48 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.53.12.229 with SMTP id et5mr36370692vdd.32.1404216828022; Tue, 01 Jul 2014 05:13:48 -0700 (PDT) Received: by 10.52.165.226 with HTTP; Tue, 1 Jul 2014 05:13:47 -0700 (PDT) In-Reply-To: <53A839EB.3090603@arm.com> References: <53A839EB.3090603@arm.com> Date: Tue, 01 Jul 2014 12:13:00 -0000 Message-ID: Subject: Re: [AArch64] Implement some vca*_f[32,64] intrinsics From: Marcus Shawcroft To: Kyrill Tkachov Cc: GCC Patches Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2014-07/txt/msg00049.txt.bz2 On 23 June 2014 15:30, Kyrill Tkachov wrote: > Hi all, > > This patch implements some absolute compare intrinsics in arm_neon.h. > > Execution tests are added. > Tested aarch64-none-elf, aarch64_be-none-elf, bootstrapped on aarch64 linux +/* { dg-do run } */ +/* { dg-options "-save-temps -O3" } */ + +#include "arm_neon.h" +#include + Drop the dependence on stdio.h please. + fprintf (stderr, "Expected: %ld, got %ld\n", expected, actual); No need to print the expected value, abort( i alone is fine. Dropping the printf will make the #include above go away. Ok with those changes. /Marcus