aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arm/neon-vmov_ns64.c
blob: c125f4a247dedfe8d06d3d16c8eb1ad332b8cc9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Test the `vmov_ns64' ARM Neon intrinsic.  */

/* { dg-do run } */
/* { dg-require-effective-target arm_neon_hw } */
/* { dg-options "-O0" } */
/* { dg-add-options arm_neon } */

#include "arm_neon.h"
#include <stdlib.h>

int main (void)
{
  int64x1_t out_int64x1_t = 0;
  int64_t arg0_int64_t = (int64_t) 0xdeadbeef;

  out_int64x1_t = vmov_n_s64 (arg0_int64_t);
  if ((int64_t)out_int64x1_t != arg0_int64_t)
    abort();
  return 0;
}