diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-05 15:10:54 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-05 15:10:54 +0000 |
commit | f7f319d4d35c1b447f4afca97029b90e5b4364e9 (patch) | |
tree | 265ce832ae51dc62441d4e61072949bc7465c7d7 /llvm/lib/Target/X86/X86FrameLowering.cpp | |
parent | 3e600a29d31e7dd6212f91f9203d4d19ec48235c (diff) | |
download | bcm5719-llvm-f7f319d4d35c1b447f4afca97029b90e5b4364e9.tar.gz bcm5719-llvm-f7f319d4d35c1b447f4afca97029b90e5b4364e9.zip |
Target/X86: Fix whitespace.
llvm-svn: 124946
Diffstat (limited to 'llvm/lib/Target/X86/X86FrameLowering.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86FrameLowering.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86FrameLowering.cpp b/llvm/lib/Target/X86/X86FrameLowering.cpp index e04d5d42b6e..9722701ee20 100644 --- a/llvm/lib/Target/X86/X86FrameLowering.cpp +++ b/llvm/lib/Target/X86/X86FrameLowering.cpp @@ -318,7 +318,7 @@ void X86FrameLowering::emitCalleeSavedFrameMoves(MachineFunction &MF, // move" for this extra "PUSH", the linker will lose track of the fact that // the frame pointer should have the value of the first "PUSH" when it's // trying to unwind. - // + // // FIXME: This looks inelegant. It's possibly correct, but it's covering up // another bug. I.e., one where we generate a prolog like this: // @@ -594,8 +594,8 @@ void X86FrameLowering::emitPrologue(MachineFunction &MF) const { StackPtr, false, NumBytes - 4); MBB.insert(MBBI, MI); } - } else if (NumBytes >= 4096 && - STI.isTargetWin64() && + } else if (NumBytes >= 4096 && + STI.isTargetWin64() && !STI.isTargetEnvMacho()) { // Sanity check that EAX is not livein for this function. It should // not be, so throw an assert. |