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 | 561bb367563eff4a7c2f3dfed15976b0d5a891df (patch) | |
tree | e486f889e29827feb9fe9696f0d5eac475d2162c /llvm/lib/Analysis/ScalarEvolutionExpander.cpp | |
parent | c8809b5c085dd77dc5aa2490f0f6863f4dd68f34 (diff) | |
download | bcm5719-llvm-561bb367563eff4a7c2f3dfed15976b0d5a891df.tar.gz bcm5719-llvm-561bb367563eff4a7c2f3dfed15976b0d5a891df.zip |
Fix 80 cols violation
llvm-svn: 32179
Diffstat (limited to 'llvm/lib/Analysis/ScalarEvolutionExpander.cpp')
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolutionExpander.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolutionExpander.cpp b/llvm/lib/Analysis/ScalarEvolutionExpander.cpp index 3865d5f7afd..2698ace5b3a 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 @@ 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); |