[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 09:25:18 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) {
----------------
paulhuggett wrote:

Done. I had to decide whether to follow the standard style or that of the literal next line. They both now follow the standard style.

https://github.com/llvm/llvm-project/pull/133450


More information about the llvm-commits mailing list