Exemplo n.º 1
0
void test_vqshlQ_ns32 (void)
{
  int32x4_t out_int32x4_t;
  int32x4_t arg0_int32x4_t;

  out_int32x4_t = vqshlq_n_s32 (arg0_int32x4_t, 1);
}
Exemplo n.º 2
0
int32x4_t test_vqshlq_n_s32(int32x4_t in) {
    // CHECK-LABEL: @test_vqshlq_n_s32
    // CHECK: call <4 x i32> @llvm.arm64.neon.sqshl.v4i32(<4 x i32> %in, <4 x i32> <i32 1, i32 1, i32 1, i32 1>)
    return vqshlq_n_s32(in, 1);
}