void test_vuzps8 (void)
{
  int8x8x2_t out_int8x8x2_t;
  int8x8_t arg0_int8x8_t;
  int8x8_t arg1_int8x8_t;

  out_int8x8x2_t = vuzp_s8 (arg0_int8x8_t, arg1_int8x8_t);
}
Example #2
0
int8x8x2_t test_vuzp_s8(int8x8_t a, int8x8_t b) {
  // CHECK-LABEL: test_vuzp_s8
  return vuzp_s8(a, b);
  // CHECK: uzp1 {{v[0-9]+}}.8b, {{v[0-9]+}}.8b
  // CHECK: uzp2 {{v[0-9]+}}.8b, {{v[0-9]+}}.8b
}