[clang] [Clang][CIR] Add vqshlud and vqshld AArch64 builtins (PR #190728)
Kartik Ohlan via cfe-commits
cfe-commits at lists.llvm.org
Thu Apr 9 17:22:56 PDT 2026
Ko496-glitch wrote:
@banach-space hey i have a question so i was importing the test cases from lang/test/CodeGen/AArch64/neon-intrinsics.c, but for some reason i am unable to fill the check-lines using update_cc_test_checks.py, am i missing something ?
// LLVM-LABEL: @test_vqshlud_n_s64
// CIR-LABEL: @vqshlud_n_s64
int64_t test_vqshlud_n_s64(int64_t a) {
return (int64_t)vqshlud_n_s64(a, 1);
}
// LLVM-LABEL: @test_vqshld_n_s64
// CIR-LABEL: @vqshld_n_s64
int64_t test_vqshld_n_s64(int64_t a) {
return vqshld_n_s64(a, 1);
}
https://github.com/llvm/llvm-project/pull/190728
More information about the cfe-commits
mailing list