From: Bill Wendling Date: Fri, 14 May 2010 21:38:44 +0000 (+0000) Subject: This should happen if there are no calls, not if it just doesn't adjust the X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=55ed945bfd4886313fde8075e6512219fd881ab4;p=oota-llvm.git This should happen if there are no calls, not if it just doesn't adjust the stack. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103813 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86RegisterInfo.cpp b/lib/Target/X86/X86RegisterInfo.cpp index 2db3c703cc9..f24138ae1de 100644 --- a/lib/Target/X86/X86RegisterInfo.cpp +++ b/lib/Target/X86/X86RegisterInfo.cpp @@ -898,7 +898,7 @@ void X86RegisterInfo::emitPrologue(MachineFunction &MF) const { if (Is64Bit && !Fn->hasFnAttr(Attribute::NoRedZone) && !needsStackRealignment(MF) && !MFI->hasVarSizedObjects() && // No dynamic alloca. - !MFI->adjustsStack() && // No calls. + !MFI->hasCalls() && // No calls. !Subtarget->isTargetWin64()) { // Win64 has no Red Zone uint64_t MinSize = X86FI->getCalleeSavedFrameSize(); if (HasFP) MinSize += SlotSize;