Exemplo n.º 1
0
int64x1_t
test_vrshr_n_s64 (int64x1_t a)
{
  return vrshr_n_s64 (a, 5);
}
Exemplo n.º 2
0
int64x1_t test_vrshr_n_s64(int64x1_t in) {
    // CHECK-LABEL: @test_vrshr_n_s64
    // CHECK: call <1 x i64> @llvm.arm64.neon.srshl.v1i64(<1 x i64> %in, <1 x i64> <i64 -1>)
    return vrshr_n_s64(in, 1);
}