[llvm] [RISCV] Fix the disassembler's handling of C.LUI when imm=0 (PR #133450)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 08:23:03 PDT 2025
================
@@ -453,6 +453,9 @@ static DecodeStatus decodeCLUIImmOperand(MCInst &Inst, uint32_t Imm,
int64_t Address,
const MCDisassembler *Decoder) {
assert(isUInt<6>(Imm) && "Invalid immediate");
+ if (Imm == 0) {
----------------
topperc wrote:
Drop curly braces
https://github.com/llvm/llvm-project/pull/133450
More information about the llvm-commits
mailing list