80-cols; NFC

llvm-svn: 258323
This commit is contained in:
Sanjay Patel 2016-01-20 16:41:43 +00:00
parent 2b6963fce9
commit 1c600c6e83
1 changed files with 2 additions and 2 deletions

View File

@ -754,8 +754,8 @@ Instruction *InstCombiner::visitCallInst(CallInst &CI) {
if (Changed) return II;
}
auto SimplifyDemandedVectorEltsLow = [this](Value *Op, unsigned Width, unsigned DemandedWidth)
{
auto SimplifyDemandedVectorEltsLow = [this](Value *Op, unsigned Width,
unsigned DemandedWidth) {
APInt UndefElts(Width, 0);
APInt DemandedElts = APInt::getLowBitsSet(Width, DemandedWidth);
return SimplifyDemandedVectorElts(Op, DemandedElts, UndefElts);