[llvm] [RISCV] Use MCRegister. NFC (PR #210110)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 16 09:50:37 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-risc-v
Author: Craig Topper (topperc)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/210110.diff
1 Files Affected:
- (modified) llvm/lib/Target/RISCV/RISCVLoadStoreOptimizer.cpp (+2-2)
``````````diff
diff --git a/llvm/lib/Target/RISCV/RISCVLoadStoreOptimizer.cpp b/llvm/lib/Target/RISCV/RISCVLoadStoreOptimizer.cpp
index c4ad82408c232..eb6eddfba749f 100644
--- a/llvm/lib/Target/RISCV/RISCVLoadStoreOptimizer.cpp
+++ b/llvm/lib/Target/RISCV/RISCVLoadStoreOptimizer.cpp
@@ -916,8 +916,8 @@ bool RISCVLoadStoreOpt::fixInvalidRegPairOp(MachineBasicBlock &MBB,
unsigned RealOpc = IsLoad ? RISCV::LD_RV32 : RISCV::SD_RV32;
// Create register pair from the two individual registers
- unsigned RegPair = TRI->getMatchingSuperReg(FirstReg, RISCV::sub_gpr_even,
- &RISCV::GPRPairRegClass);
+ MCRegister RegPair = TRI->getMatchingSuperReg(FirstReg, RISCV::sub_gpr_even,
+ &RISCV::GPRPairRegClass);
// Create the real LD/SD instruction with register pair
MachineInstrBuilder MIB = BuildMI(MBB, MBBI, DL, TII->get(RealOpc));
``````````
</details>
https://github.com/llvm/llvm-project/pull/210110
More information about the llvm-commits
mailing list