Example #1
0
void test_vmov_np8 (void)
{
  poly8x8_t out_poly8x8_t;
  poly8_t arg0_poly8_t;

  out_poly8x8_t = vmov_n_p8 (arg0_poly8_t);
}
Example #2
0
poly8x8_t test_vmov_n_p8(poly8_t v1) {
  // CHECK: test_vmov_n_p8
  return vmov_n_p8(v1);
  // CHECK: dup {{v[0-9]+}}.8b, {{w[0-9]+}}
}