Esempio n. 1
0
void test_vcaltf32 (void)
{
  uint32x2_t out_uint32x2_t;
  float32x2_t arg0_float32x2_t;
  float32x2_t arg1_float32x2_t;

  out_uint32x2_t = vcalt_f32 (arg0_float32x2_t, arg1_float32x2_t);
}
Esempio n. 2
0
uint32x2_t test_vcalt_f32(float32x2_t a1, float32x2_t a2) {
  // CHECK: test_vcalt_f32
  return vcalt_f32(a1, a2);
  // CHECK: llvm.arm64.neon.facgt.v2i32.v2f32{{.*a2,.*a1}}
  // no check for ret here, as there is a bitcast
}