forked from OSchip/llvm-project
Forgot to obey 80 column rule. Fixing that.
llvm-svn: 41725
This commit is contained in:
parent
813dd67a34
commit
2320323647
|
@ -7058,7 +7058,8 @@ Instruction *InstCombiner::visitBitCast(BitCastInst &CI) {
|
|||
// If we found a path from the src to dest, create the getelementptr now.
|
||||
if (SrcElTy == DstElTy) {
|
||||
SmallVector<Value*, 8> Idxs(NumZeros+1, ZeroUInt);
|
||||
return new GetElementPtrInst(Src, Idxs.begin(), Idxs.end(), "", ((Instruction*) NULL));
|
||||
return new GetElementPtrInst(Src, Idxs.begin(), Idxs.end(), "",
|
||||
((Instruction*) NULL));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue