From: Chad Rosier <mcrosier@codeaurora.org>
Date: Thu, 19 Nov 2015 18:25:11 +0000 (+0000)
Subject: [LIR] Fix 80-column from previous commit.
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=316a6c1358cba11402ac620e0e047387613584e7;p=oota-llvm.git

[LIR] Fix 80-column from previous commit.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253586 91177308-0d34-0410-b5e6-96231b3b80d8
---

diff --git a/lib/Transforms/Scalar/LoopIdiomRecognize.cpp b/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
index b385ca77dde..cbba6800a67 100644
--- a/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
+++ b/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
@@ -624,7 +624,8 @@ bool LoopIdiomRecognize::processLoopStoreOfLoopLoad(
   // See if the pointer expression is an AddRec like {base,+,1} on the current
   // loop, which indicates a strided load.  If we have something else, it's a
   // random load we can't handle.
-  const SCEVAddRecExpr *LoadEv = dyn_cast<SCEVAddRecExpr>(SE->getSCEV(LI->getPointerOperand()));
+  const SCEVAddRecExpr *LoadEv =
+      dyn_cast<SCEVAddRecExpr>(SE->getSCEV(LI->getPointerOperand()));
   if (!LoadEv || LoadEv->getLoop() != CurLoop || !LoadEv->isAffine())
     return false;