[LIR] Fix 80-column from previous commit.
authorChad Rosier <mcrosier@codeaurora.org>
Thu, 19 Nov 2015 18:25:11 +0000 (18:25 +0000)
committerChad Rosier <mcrosier@codeaurora.org>
Thu, 19 Nov 2015 18:25:11 +0000 (18:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253586 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopIdiomRecognize.cpp

index b385ca77dde414b12ed80ba8c4bd2086a9b381ff..cbba6800a679ae3377513e512fb48fd35cf58964 100644 (file)
@@ -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;