예제 #1
0
파일: vqshl_ns16.c 프로젝트: 0day-ci/gcc
void test_vqshl_ns16 (void)
{
  int16x4_t out_int16x4_t;
  int16x4_t arg0_int16x4_t;

  out_int16x4_t = vqshl_n_s16 (arg0_int16x4_t, 1);
}
예제 #2
0
int16x4_t test_vqshl_n_s16(int16x4_t in) {
    // CHECK-LABEL: @test_vqshl_n_s16
    // CHECK: call <4 x i16> @llvm.arm64.neon.sqshl.v4i16(<4 x i16> %in, <4 x i16> <i16 1, i16 1, i16 1, i16 1>)
    return vqshl_n_s16(in, 1);
}