Exemple #1
0
void test_vRsraQ_ns16 (void)
{
  int16x8_t out_int16x8_t;
  int16x8_t arg0_int16x8_t;
  int16x8_t arg1_int16x8_t;

  out_int16x8_t = vrsraq_n_s16 (arg0_int16x8_t, arg1_int16x8_t, 1);
}
Exemple #2
0
int16x8_t test_vrsraq_n_s16(int16x8_t acc, int16x8_t in) {
    // CHECK-LABEL: @test_vrsraq_n_s16
    // CHECK: [[TMP:%[0-9a-zA-Z._]+]] = tail call <8 x i16> @llvm.arm64.neon.srshl.v8i16(<8 x i16> %in, <8 x i16> <i16 -1, i16 -1, i16 -1, i16 -1, i16 -1, i16 -1, i16 -1, i16 -1>)
    // CHECK: add <8 x i16> [[TMP]], %acc
    return vrsraq_n_s16(acc, in, 1);
}