Exemplo n.º 1
0
void test_vqshlQ_ns64 (void)
{
    int64x2_t out_int64x2_t;
    int64x2_t arg0_int64x2_t;

    out_int64x2_t = vqshlq_n_s64 (arg0_int64x2_t, 1);
}
Exemplo n.º 2
0
int64x2_t test_vqshlq_n_s64(int64x2_t in) {
    // CHECK-LABEL: @test_vqshlq_n_s64
    // CHECK: call <2 x i64> @llvm.arm64.neon.sqshl.v2i64(<2 x i64> %in, <2 x i64> <i64 1, i64 1>
    return vqshlq_n_s64(in, 1);
}