Example #1
0
void test_vrsqrteu32 (void)
{
  uint32x2_t out_uint32x2_t;
  uint32x2_t arg0_uint32x2_t;

  out_uint32x2_t = vrsqrte_u32 (arg0_uint32x2_t);
}
Example #2
0
uint32x2_t test_vrsqrte_u32(uint32x2_t in) {
  // CHECK-LABEL: @test_vrsqrte_u32
  // CHECK: call <2 x i32> @llvm.arm64.neon.ursqrte.v2i32(<2 x i32> %in)
  return vrsqrte_u32(in);
}