[llvm] ae1479c - [ARM] Remove unused argument. NFC
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 8 22:22:39 PST 2025
Author: Craig Topper
Date: 2025-03-08T22:08:54-08:00
New Revision: ae1479c79ed123bbe5865b0d91dff80efe74f32f
URL: https://github.com/llvm/llvm-project/commit/ae1479c79ed123bbe5865b0d91dff80efe74f32f
DIFF: https://github.com/llvm/llvm-project/commit/ae1479c79ed123bbe5865b0d91dff80efe74f32f.diff
LOG: [ARM] Remove unused argument. NFC
Added:
Modified:
llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp b/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
index 9e1f3fcbdc43f..59b4923c0c5b8 100644
--- a/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
+++ b/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
@@ -2144,7 +2144,7 @@ static void CMSEPushCalleeSaves(const TargetInstrInfo &TII,
static void CMSEPopCalleeSaves(const TargetInstrInfo &TII,
MachineBasicBlock &MBB,
- MachineBasicBlock::iterator MBBI, int JumpReg,
+ MachineBasicBlock::iterator MBBI,
bool Thumb1Only) {
const DebugLoc &DL = MBBI->getDebugLoc();
if (Thumb1Only) {
@@ -2418,7 +2418,7 @@ bool ARMExpandPseudo::ExpandMI(MachineBasicBlock &MBB,
CMSERestoreFPRegs(MBB, MBBI, DL, OriginalClearRegs); // restore FP registers
- CMSEPopCalleeSaves(*TII, MBB, MBBI, JumpReg, AFI->isThumb1OnlyFunction());
+ CMSEPopCalleeSaves(*TII, MBB, MBBI, AFI->isThumb1OnlyFunction());
MI.eraseFromParent();
return true;
More information about the llvm-commits
mailing list