[llvm] [RISCV] Fix the disassembler's handling of C.LUI when imm=0 (PR #133450)
Paul Bowen-Huggett via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 11:11:41 PDT 2025
================
@@ -453,9 +453,10 @@ static DecodeStatus decodeCLUIImmOperand(MCInst &Inst, uint32_t Imm,
int64_t Address,
const MCDisassembler *Decoder) {
assert(isUInt<6>(Imm) && "Invalid immediate");
- if (Imm > 31) {
+ if (Imm == 0)
+ return MCDisassembler::Fail;
+ if (Imm > 31)
----------------
paulhuggett wrote:
Interesting. A simple enough thing to check and change.
https://github.com/llvm/llvm-project/pull/133450
More information about the llvm-commits
mailing list