mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Fix 80 cols violation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32179 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
14042388a1
commit
10292555f3
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user