Fix 80 cols violation
authorReid Spencer <rspencer@reidspencer.com>
Mon, 4 Dec 2006 17:04:44 +0000 (17:04 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 4 Dec 2006 17:04:44 +0000 (17:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32179 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/ScalarEvolutionExpander.cpp

index 3865d5f7afd6831de8e0a36b22d36da4bb027dbd..2698ace5b3ab64f6666692574cec11f44deb0317 100644 (file)
@@ -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 @@ Value *SCEVExpander::InsertCastOfTo(Value *V, const Type *Ty) {
           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);