mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Simplify code. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166972 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6d317824a5
commit
96df437a03
@ -2266,14 +2266,15 @@ X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
|
||||
int FPDiff = 0;
|
||||
if (isTailCall && !IsSibcall) {
|
||||
// Lower arguments at fp - stackoffset + fpdiff.
|
||||
unsigned NumBytesCallerPushed =
|
||||
MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
|
||||
X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
|
||||
unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
|
||||
|
||||
FPDiff = NumBytesCallerPushed - NumBytes;
|
||||
|
||||
// Set the delta of movement of the returnaddr stackslot.
|
||||
// But only set if delta is greater than previous delta.
|
||||
if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
|
||||
MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
|
||||
if (FPDiff < X86Info->getTCReturnAddrDelta())
|
||||
X86Info->setTCReturnAddrDelta(FPDiff);
|
||||
}
|
||||
|
||||
if (!IsSibcall)
|
||||
|
Loading…
x
Reference in New Issue
Block a user