[ARM] Fix test armv8_2-fp16-move-1.c
[official-gcc.git] / gcc / testsuite / gcc.target / arm / neon-veoru64.c
blobb7ff77af0d5e77cfbfc8ba3195c6879e7b088b0d
1 /* Test the `veor_u64' ARM Neon intrinsic. */
3 /* { dg-do run } */
4 /* { dg-require-effective-target arm_neon_hw } */
5 /* { dg-options "-O0" } */
6 /* { dg-add-options arm_neon } */
8 #include "arm_neon.h"
9 #include <stdlib.h>
11 int main (void)
13 uint64x1_t out_uint64x1_t = 0;
14 uint64x1_t arg0_uint64x1_t = (uint64x1_t)0xdeadbeef00000000LL;
15 uint64x1_t arg1_uint64x1_t = (uint64x1_t)0xdead00000000beefLL;
17 out_uint64x1_t = veor_u64 (arg0_uint64x1_t, arg1_uint64x1_t);
18 if (out_uint64x1_t != (uint64x1_t)0x0000beef0000beefLL)
19 abort();
20 return 0;