Example #1
0
void test_vqshl_ns32 (void)
{
  int32x2_t out_int32x2_t;
  int32x2_t arg0_int32x2_t;

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