2018-02-09 Sebastian Perta <sebastian.perta@renesas.com>
[official-gcc.git] / gcc / testsuite / gcc.target / arm / neon-vmov_nu64.c
blob71ecaed134e15be2238884a6bdeb183b962cadbe
1 /* Test the `vmov_nu64' 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 uint64_t arg0_uint64_t = (uint64_t) 0xdeadbeef;
16 out_uint64x1_t = vmov_n_u64 (arg0_uint64_t);
17 if ((uint64_t)out_uint64x1_t != arg0_uint64_t)
18 abort();
19 return 0;