[llvm] 743571b - [RISCV] Remove unused argument. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 28 15:15:03 PST 2025


Author: Craig Topper
Date: 2025-02-28T15:14:51-08:00
New Revision: 743571b5f11599232a2a0a9c396827782ed4868c

URL: https://github.com/llvm/llvm-project/commit/743571b5f11599232a2a0a9c396827782ed4868c
DIFF: https://github.com/llvm/llvm-project/commit/743571b5f11599232a2a0a9c396827782ed4868c.diff

LOG: [RISCV] Remove unused argument. NFC

Added: 
    

Modified: 
    llvm/lib/Target/RISCV/RISCVFrameLowering.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp b/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
index 32834a6b84f10..8a18e681e1b85 100644
--- a/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
@@ -367,8 +367,7 @@ getPushPopEncodingAndNum(const Register MaxReg) {
 }
 
 // Get the max reg of Push/Pop for restoring callee saved registers.
-static Register getMaxPushPopReg(const MachineFunction &MF,
-                                 const std::vector<CalleeSavedInfo> &CSI) {
+static Register getMaxPushPopReg(const std::vector<CalleeSavedInfo> &CSI) {
   MCRegister MaxPushPopReg;
   for (auto &CS : CSI) {
     if (llvm::find_if(FixedCSRFIMap, [&](auto P) {
@@ -1791,7 +1790,7 @@ bool RISCVFrameLowering::assignCalleeSavedSpillSlots(
 
   if (RVFI->isPushable(MF)) {
     // Determine how many GPRs we need to push and save it to RVFI.
-    Register MaxReg = getMaxPushPopReg(MF, CSI);
+    Register MaxReg = getMaxPushPopReg(CSI);
     if (MaxReg != RISCV::NoRegister) {
       auto [RegEnc, PushedRegNum] = getPushPopEncodingAndNum(MaxReg);
       RVFI->setRVPushRegs(PushedRegNum);


        


More information about the llvm-commits mailing list