OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [arm/] [neon-vmovQ_nu64.c] - Rev 764

Go to most recent revision | Compare with Previous | Blame | View Log

/* Test the `vmovq_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)
{
  uint64x2_t out_uint64x2_t = {0, 0};
  uint64_t arg0_uint64_t = (uint64_t) 0xdeadbeef;
 
  out_uint64x2_t = vmovq_n_u64 (arg0_uint64_t);
  if (vgetq_lane_u64 (out_uint64x2_t, 0) != arg0_uint64_t)
    abort();
  if (vgetq_lane_u64 (out_uint64x2_t, 1) != arg0_uint64_t)
    abort();
  return 0;
}
 
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.