Exemplo n.º 1
0
void test_vqshlQ_ns16 (void)
{
  int16x8_t out_int16x8_t;
  int16x8_t arg0_int16x8_t;

  out_int16x8_t = vqshlq_n_s16 (arg0_int16x8_t, 1);
}
Exemplo n.º 2
0
int16x8_t test_vqshlq_n_s16(int16x8_t in) {
    // CHECK-LABEL: @test_vqshlq_n_s16
    // CHECK: call <8 x i16> @llvm.arm64.neon.sqshl.v8i16(<8 x i16> %in, <8 x i16> <i16 1, i16 1, i16 1, i16 1, i16 1, i16 1, i16 1, i16 1>)
    return vqshlq_n_s16(in, 1);
}