Exemple #1
0
void test_vcaleQf32 (void)
{
  uint32x4_t out_uint32x4_t;
  float32x4_t arg0_float32x4_t;
  float32x4_t arg1_float32x4_t;

  out_uint32x4_t = vcaleq_f32 (arg0_float32x4_t, arg1_float32x4_t);
}
uint32x4_t test_vcaleq_f32(float32x4_t a1, float32x4_t a2) {
  // CHECK: test_vcaleq_f32
  return vcaleq_f32(a1, a2);
  // CHECK: llvm.arm64.neon.facge.v4i32.v4f32{{.*a2,.*a1}}
  // no check for ret here, as there is a bitcast
}