diff options
author | Sanjay Patel <spatel@rotateright.com> | 2015-07-28 15:38:43 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2015-07-28 15:38:43 +0000 |
commit | d411114e772ed655a7416810877c956078146295 (patch) | |
tree | 5c8656b46ec5750f686a715464bdf23cc33aaecb /llvm/lib/Transforms/InstCombine | |
parent | a0905079d51cbf1f62ee13a00666cd3255a2580f (diff) | |
download | bcm5719-llvm-d411114e772ed655a7416810877c956078146295.tar.gz bcm5719-llvm-d411114e772ed655a7416810877c956078146295.zip |
fix formatting; NFC
llvm-svn: 243424
Diffstat (limited to 'llvm/lib/Transforms/InstCombine')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp index cae383f5c0b..8083e6a72e7 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp @@ -67,8 +67,7 @@ Instruction *InstCombiner::SimplifyMemTransfer(MemIntrinsic *MI) { unsigned CopyAlign = MI->getAlignment(); if (CopyAlign < MinAlign) { - MI->setAlignment(ConstantInt::get(MI->getAlignmentType(), - MinAlign, false)); + MI->setAlignment(ConstantInt::get(MI->getAlignmentType(), MinAlign, false)); return MI; } |