1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00

Remove trailing whitespace. Remove new lines between closing brace and 'else'

llvm-svn: 172784
This commit is contained in:
Craig Topper 2013-01-18 05:09:16 +00:00
parent 51c56a28c1
commit bf40e524fd

View File

@ -618,8 +618,7 @@ Instruction *InstCombiner::visitShuffleVectorInst(ShuffleVectorInst &SVI) {
// with a -1 mask value.
if (eltMask >= (int)LHSOp0Width && isa<UndefValue>(LHSOp1))
eltMask = -1;
}
else
} else
eltMask = Mask[i];
} else {
// This element is from right hand side vector operand
@ -639,8 +638,7 @@ Instruction *InstCombiner::visitShuffleVectorInst(ShuffleVectorInst &SVI) {
&& "should have been check above");
eltMask = -1;
}
}
else
} else
eltMask = Mask[i]-LHSWidth;
// If LHS's width is changed, shift the mask value accordingly.