On 23 June 2014 15:30, Kyrill Tkachov <kyrylo.tkac...@arm.com> 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 <stdio.h> + 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