[llvm] 10f983a - [RISCV] Remove ParserMatchClass and DecoderMethod from an operand only used by pseudos. NFC
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 15:07:49 PDT 2025
Author: Craig Topper
Date: 2025-03-27T15:07:29-07:00
New Revision: 10f983aebbb3a27c122b2a0f0ba9f2c809f1c8b9
URL: https://github.com/llvm/llvm-project/commit/10f983aebbb3a27c122b2a0f0ba9f2c809f1c8b9
DIFF: https://github.com/llvm/llvm-project/commit/10f983aebbb3a27c122b2a0f0ba9f2c809f1c8b9.diff
LOG: [RISCV] Remove ParserMatchClass and DecoderMethod from an operand only used by pseudos. NFC
Added:
Modified:
llvm/lib/Target/RISCV/RISCVInstrInfoXSf.td
Removed:
################################################################################
diff --git a/llvm/lib/Target/RISCV/RISCVInstrInfoXSf.td b/llvm/lib/Target/RISCV/RISCVInstrInfoXSf.td
index cd13433847c54..fbf4c1de35234 100644
--- a/llvm/lib/Target/RISCV/RISCVInstrInfoXSf.td
+++ b/llvm/lib/Target/RISCV/RISCVInstrInfoXSf.td
@@ -30,8 +30,6 @@ def VCIX_XVW : VCIXType<0b1111>;
// The payload and tsimm5 operands are all marked as ImmArg in the IR
// intrinsic and will be target constant, so use TImmLeaf rather than ImmLeaf.
class PayloadOp<int bitsNum> : RISCVOp, TImmLeaf<XLenVT, "return isUInt<" # bitsNum # ">(Imm);"> {
- let ParserMatchClass = UImmAsmOperand<bitsNum>;
- let DecoderMethod = "decodeUImmOperand<"# bitsNum # ">";
let OperandType = "OPERAND_UIMM" # bitsNum;
}
More information about the llvm-commits
mailing list