Fix 80 cols violation

llvm-svn: 32179
diff --git a/llvm/lib/Analysis/ScalarEvolutionExpander.cpp b/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
index 3865d5f..2698ace 100644
--- a/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
+++ b/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
@@ -15,6 +15,7 @@
 
 #include "llvm/Analysis/LoopInfo.h"
 #include "llvm/Analysis/ScalarEvolutionExpander.h"
+
 using namespace llvm;
 
 /// InsertCastOfTo - Insert a cast of V to the specified type, doing what
@@ -38,8 +39,8 @@
           return CI;
         }
     }
-    return CastInst::createInferredCast(V, Ty, V->getName(),
-                                       A->getParent()->getEntryBlock().begin());
+    return CastInst::createInferredCast(
+        V, Ty, V->getName(), A->getParent()->getEntryBlock().begin());
   }
     
   Instruction *I = cast<Instruction>(V);