summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-12-04 17:04:44 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-12-04 17:04:44 +0000
commit561bb367563eff4a7c2f3dfed15976b0d5a891df (patch)
treee486f889e29827feb9fe9696f0d5eac475d2162c /llvm/lib
parentc8809b5c085dd77dc5aa2490f0f6863f4dd68f34 (diff)
downloadbcm5719-llvm-561bb367563eff4a7c2f3dfed15976b0d5a891df.tar.gz
bcm5719-llvm-561bb367563eff4a7c2f3dfed15976b0d5a891df.zip
Fix 80 cols violation
llvm-svn: 32179
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Analysis/ScalarEvolutionExpander.cpp5
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);
OpenPOWER on IntegriCloud