Beispiel #1
0
int64x1_t
test_vqshl_n_s64 (int64x1_t a)
{
  return vqshl_n_s64 (a, 5);
}
Beispiel #2
0
int64x1_t test_vqshl_n_s64(int64x1_t in) {
    // CHECK-LABEL: @test_vqshl_n_s64
    // CHECK: call <1 x i64> @llvm.arm64.neon.sqshl.v1i64(<1 x i64> %in, <1 x i64> <i64 1>)
    return vqshl_n_s64(in, 1);
}