Beispiel #1
0
void test_vtrnp16 (void)
{
  poly16x4x2_t out_poly16x4x2_t;
  poly16x4_t arg0_poly16x4_t;
  poly16x4_t arg1_poly16x4_t;

  out_poly16x4x2_t = vtrn_p16 (arg0_poly16x4_t, arg1_poly16x4_t);
}
Beispiel #2
0
poly16x4x2_t test_vtrn_p16(poly16x4_t a, poly16x4_t b) {
  // CHECK-LABEL: test_vtrn_p16
  return vtrn_p16(a, b);
  // CHECK: trn1 {{v[0-9]+}}.4h, {{v[0-9]+}}.4h
  // CHECK: trn2 {{v[0-9]+}}.4h, {{v[0-9]+}}.4h
}