[llvm-branch-commits] [llvm] [AArch64][llvm] Armv9.7-A: Add support for SVE2p3 LUTI6 operations (PR #163164)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Oct 22 09:33:08 PDT 2025
================
@@ -4882,6 +4882,15 @@ ParseStatus AArch64AsmParser::tryParseVectorList(OperandVector &Operands,
FirstReg, Count, Stride, NumElements, ElementWidth, VectorKind, S,
getLoc(), getContext()));
+ if (Mnemonic == "luti6") {
----------------
CarolineConcatto wrote:
I am not sure we want to check mnemonic here. What happens if you remove?
It should check if it the token expected by luti6, because it expects and index if should check for square brackets "[", like it will see in the instruction
luti6 { z0.h, z4.h, z8.h, z12.h }, { z0.h, z1.h }, { z0, z1 }[0]
https://github.com/llvm/llvm-project/pull/163164
More information about the llvm-branch-commits
mailing list