1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Fix 80 cols violation

llvm-svn: 32179
This commit is contained in:
Reid Spencer 2006-12-04 17:04:44 +00:00
parent 5f8360b8a4
commit 01a0443bdd

View 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);