diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-04 17:04:44 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-04 17:04:44 +0000 |
commit | 10292555f391bf9fa0e8ee78da35757e9b7e49f2 (patch) | |
tree | ad333caf11ac22bbe13134cae15757db8fc270ab /lib/Analysis/ScalarEvolutionExpander.cpp | |
parent | 14042388a1be352cbbd28b5814429eddada55cdb (diff) |
Fix 80 cols violation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32179 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ScalarEvolutionExpander.cpp')
-rw-r--r-- | lib/Analysis/ScalarEvolutionExpander.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Analysis/ScalarEvolutionExpander.cpp b/lib/Analysis/ScalarEvolutionExpander.cpp index 3865d5f7af..2698ace5b3 100644 --- a/lib/Analysis/ScalarEvolutionExpander.cpp +++ b/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 @@ 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); |