summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-06-05 00:09:08 +0000
committerEric Christopher <echristo@gmail.com>2014-06-05 00:09:08 +0000
commit52fa6599e87346de605c86bd7d220a9a6b416665 (patch)
tree06cf127040a47289911a7c82ec6df365a77b086d
parent11b05cccfafe3d58a8b794b64b98735555fe8932 (diff)
downloadbcm5719-llvm-52fa6599e87346de605c86bd7d220a9a6b416665.tar.gz
bcm5719-llvm-52fa6599e87346de605c86bd7d220a9a6b416665.zip
80-columns.
llvm-svn: 210224
-rw-r--r--llvm/lib/Target/X86/X86FrameLowering.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86FrameLowering.cpp b/llvm/lib/Target/X86/X86FrameLowering.cpp
index dbe3c914642..48ae836a780 100644
--- a/llvm/lib/Target/X86/X86FrameLowering.cpp
+++ b/llvm/lib/Target/X86/X86FrameLowering.cpp
@@ -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;
OpenPOWER on IntegriCloud