Example #1
0
void test_vqshlu_ns32 (void)
{
  uint32x2_t out_uint32x2_t;
  int32x2_t arg0_int32x2_t;

  out_uint32x2_t = vqshlu_n_s32 (arg0_int32x2_t, 1);
}
Example #2
0
int32x2_t test_vqshlu_n_s32(int32x2_t in) {
    // CHECK-LABEL: @test_vqshlu_n_s32
    // CHECK: call <2 x i32> @llvm.arm64.neon.sqshlu.v2i32(<2 x i32> %in, <2 x i32> <i32 1, i32 1>)
    return vqshlu_n_s32(in, 1);
}