示例#1
0
void test_vtrnQf32 (void)
{
  float32x4x2_t out_float32x4x2_t;
  float32x4_t arg0_float32x4_t;
  float32x4_t arg1_float32x4_t;

  out_float32x4x2_t = vtrnq_f32 (arg0_float32x4_t, arg1_float32x4_t);
}
示例#2
0
float32x4x2_t test_vtrnq_f32(float32x4_t a, float32x4_t b) {
  // CHECK-LABEL: test_vtrnq_f32
  return vtrnq_f32(a, b);
  // CHECK: trn1 {{v[0-9]+}}.4s, {{v[0-9]+}}.4s
  // CHECK: trn2 {{v[0-9]+}}.4s, {{v[0-9]+}}.4s
}