testsuite: powerpc: fix dg-do run typo
[official-gcc.git] / gcc / testsuite / gcc.target / arm / simd / vextp64_1.c
blob4ebedf346c9ff9c0e1c610af23b86833659bb12a
1 /* Test the `vextp64' ARM Neon intrinsic. */
3 /* { dg-require-effective-target arm_crypto_ok } */
4 /* { dg-options "-save-temps -O3 -fno-inline" } */
5 /* { dg-add-options arm_crypto } */
7 #include "arm_neon.h"
9 extern void abort (void);
11 int
12 main (int argc, char **argv)
14 int i;
15 poly64x1_t in1 = {0};
16 poly64x1_t in2 = {1};
17 poly64x1_t actual = vext_p64 (in1, in2, 0);
18 if (actual != in1)
19 abort ();
21 return 0;
24 /* Don't scan assembler for vext - it can be optimized into a move from r0. */