예제 #1
0
void test_vqshlu_ns8 (void)
{
    uint8x8_t out_uint8x8_t;
    int8x8_t arg0_int8x8_t;

    out_uint8x8_t = vqshlu_n_s8 (arg0_int8x8_t, 1);
}
예제 #2
0
int8x8_t test_vqshlu_n_s8(int8x8_t in) {
    // CHECK-LABEL: @test_vqshlu_n_s8
    // CHECK: call <8 x i8> @llvm.arm64.neon.sqshlu.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 vqshlu_n_s8(in, 1);
}