Ejemplo n.º 1
0
void test_vqshl_ns8 (void)
{
  int8x8_t out_int8x8_t;
  int8x8_t arg0_int8x8_t;

  out_int8x8_t = vqshl_n_s8 (arg0_int8x8_t, 1);
}
Ejemplo n.º 2
0
int8x8_t test_vqshl_n_s8(int8x8_t in) {
    // CHECK-LABEL: @test_vqshl_n_s8
    // CHECK: call <8 x i8> @llvm.arm64.neon.sqshl.v8i8(<8 x i8> %in, <8 x i8> <i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1>)
    return vqshl_n_s8(in, 1);
}