[llvm] r314845 - [X86] Remove dead declaration convertArgMovsToPushes, NFC
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 3 14:12:18 PDT 2017
Author: rnk
Date: Tue Oct 3 14:12:18 2017
New Revision: 314845
URL: http://llvm.org/viewvc/llvm-project?rev=314845&view=rev
Log:
[X86] Remove dead declaration convertArgMovsToPushes, NFC
This was dead when it landed in r252578. We have this functionality, if
not for stack probe calls, but for regular calls in
X86CallFrameOptimization.cpp.
Modified:
llvm/trunk/lib/Target/X86/X86FrameLowering.h
Modified: llvm/trunk/lib/Target/X86/X86FrameLowering.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86FrameLowering.h?rev=314845&r1=314844&r2=314845&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86FrameLowering.h (original)
+++ llvm/trunk/lib/Target/X86/X86FrameLowering.h Tue Oct 3 14:12:18 2017
@@ -157,15 +157,6 @@ public:
void orderFrameObjects(const MachineFunction &MF,
SmallVectorImpl<int> &ObjectsToAllocate) const override;
- /// convertArgMovsToPushes - This method tries to convert a call sequence
- /// that uses sub and mov instructions to put the argument onto the stack
- /// into a series of pushes.
- /// Returns true if the transformation succeeded, false if not.
- bool convertArgMovsToPushes(MachineFunction &MF,
- MachineBasicBlock &MBB,
- MachineBasicBlock::iterator I,
- uint64_t Amount) const;
-
/// Wraps up getting a CFI index and building a MachineInstr for it.
void BuildCFI(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
const DebugLoc &DL, const MCCFIInstruction &CFIInst) const;
More information about the llvm-commits
mailing list