[llvm] [CodeGen][NFC] Add laneBitmask as new MachineOperand Type (PR #151944)
Vikash Gupta via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 4 07:24:55 PDT 2025
================
@@ -2870,6 +2871,32 @@ bool MIParser::parseCustomRegisterMaskOperand(MachineOperand &Dest) {
return false;
}
+bool MIParser::parseLaneMaskOperand(MachineOperand &Dest) {
+ assert(Token.is(MIToken::kw_lanemask));
+
+ lex();
----------------
vg0204 wrote:
I thought the same as you did for MO_ShuffleMask, but don't know with which instruction it should go with( not associated yet to any kind of MI), in order to write test?
https://github.com/llvm/llvm-project/pull/151944
More information about the llvm-commits
mailing list