80-columns.
authorEric Christopher <echristo@gmail.com>
Thu, 5 Jun 2014 00:09:08 +0000 (00:09 +0000)
committerEric Christopher <echristo@gmail.com>
Thu, 5 Jun 2014 00:09:08 +0000 (00:09 +0000)
llvm-svn: 210224

llvm/lib/Target/X86/X86FrameLowering.cpp

index dbe3c91..48ae836 100644 (file)
@@ -1529,7 +1529,8 @@ eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
     // 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;