void test_vdup_lanep16 (void)
{
    poly16x4_t out_poly16x4_t;
    poly16x4_t arg0_poly16x4_t;

    out_poly16x4_t = vdup_lane_p16 (arg0_poly16x4_t, 1);
}
Exemplo n.º 2
0
poly16x4_t test_vdup_lane_p16(poly16x4_t v1) {
  // CHECK: test_vdup_lane_p16
  return vdup_lane_p16(v1, 2);
  // CHECK: dup {{v[0-9]+}}.4h, {{v[0-9]+}}.h[2]
}