[lld] [llvm] [feature][riscv] handle target address calculation in llvm-objdump disassembly for riscv (PR #109914)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 17:09:19 PST 2025
================
@@ -161,8 +164,8 @@ class RISCVMCInstrAnalysis : public MCInstrAnalysis {
}
public:
- explicit RISCVMCInstrAnalysis(const MCInstrInfo *Info)
- : MCInstrAnalysis(Info) {}
+ explicit RISCVMCInstrAnalysis(const MCInstrInfo *Info, int ArchRegWidth)
----------------
topperc wrote:
Use `unsigned` instead of `int` if its never negative.
https://github.com/llvm/llvm-project/pull/109914
More information about the llvm-commits
mailing list