void test_vRsraQ_ns8 (void)
{
  int8x16_t out_int8x16_t;
  int8x16_t arg0_int8x16_t;
  int8x16_t arg1_int8x16_t;

  out_int8x16_t = vrsraq_n_s8 (arg0_int8x16_t, arg1_int8x16_t, 1);
}
Esempio n. 2
0
int8x16_t test_vrsraq_n_s8(int8x16_t acc, int8x16_t in) {
    // CHECK-LABEL: @test_vrsraq_n_s8
    // CHECK: [[TMP:%[0-9a-zA-Z._]+]] = tail call <16 x i8> @llvm.arm64.neon.srshl.v16i8(<16 x i8> %in, <16 x i8> <i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1>)
    // CHECK: add <16 x i8> [[TMP]], %acc
    return vrsraq_n_s8(acc, in, 1);
}