Beispiel #1
0
void test_vRsra_ns8 (void)
{
  int8x8_t out_int8x8_t;
  int8x8_t arg0_int8x8_t;
  int8x8_t arg1_int8x8_t;

  out_int8x8_t = vrsra_n_s8 (arg0_int8x8_t, arg1_int8x8_t, 1);
}
Beispiel #2
0
int8x8_t test_vrsra_n_s8(int8x8_t acc, int8x8_t in) {
    // CHECK-LABEL: @test_vrsra_n_s8
    // CHECK: [[TMP:%[0-9a-zA-Z._]+]] = tail call <8 x i8> @llvm.arm64.neon.srshl.v8i8(<8 x i8> %in, <8 x i8> <i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1>)
    // CHECK: add <8 x i8> [[TMP]], %acc
    return vrsra_n_s8(acc, in, 1);
}