aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arm/neon-vdup_nu64.c
blob: 8bed5a0c7d73dec6ace940a2765ebeded518963c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Test the `vdup_nu64' 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)
{
  uint64x1_t out_uint64x1_t = 0;
  uint64_t arg0_uint64_t = (uint64_t) 0xdeadbeef;

  out_uint64x1_t = vdup_n_u64 (arg0_uint64_t);
  if ((uint64_t)out_uint64x1_t != arg0_uint64_t)
    abort();
  return 0;
}