[clang] [llvm] [RISCV] Added the MIPS prefetch extensions for MIPS RV64 P8700. (PR #145647)
Craig Topper via cfe-commits
cfe-commits at lists.llvm.org
Wed Jun 25 09:58:33 PDT 2025
================
@@ -2742,6 +2742,9 @@ bool RISCVInstrInfo::verifyInstruction(const MachineInstr &MI,
case RISCVOp::OPERAND_UIMM9_LSB000:
Ok = isShiftedUInt<6, 3>(Imm);
break;
+ case RISCVOp::OPERAND_UIMM9:
----------------
topperc wrote:
Use `CASE_OPERAND_UIMM(9)` like the other unsigned immediates earlier in this switch
https://github.com/llvm/llvm-project/pull/145647
More information about the cfe-commits
mailing list