[llvm] r210224 - 80-columns.
Eric Christopher
echristo at gmail.com
Wed Jun 4 17:09:08 PDT 2014
Author: echristo
Date: Wed Jun 4 19:09:08 2014
New Revision: 210224
URL: http://llvm.org/viewvc/llvm-project?rev=210224&view=rev
Log:
80-columns.
Modified:
llvm/trunk/lib/Target/X86/X86FrameLowering.cpp
Modified: llvm/trunk/lib/Target/X86/X86FrameLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86FrameLowering.cpp?rev=210224&r1=210223&r2=210224&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86FrameLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86FrameLowering.cpp Wed Jun 4 19:09:08 2014
@@ -1529,7 +1529,8 @@ eliminateCallFramePseudoInstr(MachineFun
// We need to keep the stack aligned properly. To do this, we round the
// amount of space needed for the outgoing arguments up to the next
// alignment boundary.
- unsigned StackAlign = MF.getTarget().getFrameLowering()->getStackAlignment();
+ unsigned StackAlign =
+ MF.getTarget().getFrameLowering()->getStackAlignment();
Amount = (Amount + StackAlign - 1) / StackAlign * StackAlign;
MachineInstr *New = nullptr;
More information about the llvm-commits
mailing list