Fix 80-column violation.

llvm-svn: 117722
This commit is contained in:
Bob Wilson 2010-10-29 22:03:07 +00:00
parent 11ee456e23
commit 9d07f39ace
1 changed files with 2 additions and 1 deletions

View File

@ -225,8 +225,9 @@ Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) {
SrcIdx -= LHSWidth;
Src = SVI->getOperand(1);
}
const Type *Int32Ty = Type::getInt32Ty(EI.getContext());
return ExtractElementInst::Create(Src,
ConstantInt::get(Type::getInt32Ty(EI.getContext()),
ConstantInt::get(Int32Ty,
SrcIdx, false));
}
}