[LIR] Fix 80-column from previous commit.
[oota-llvm.git] / 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;