Remove 'else' after 'if' that ends in return.

llvm-svn: 154267
This commit is contained in:
Craig Topper 2012-04-07 21:23:41 +00:00
parent 71d07ae5cb
commit e09d1c5c48
1 changed files with 1 additions and 1 deletions

View File

@ -2941,7 +2941,7 @@ void SelectionDAGBuilder::visitShuffleVector(const User &I) {
setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
return;
}
else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
if (RangeUse[0] < 2 && RangeUse[1] < 2) {
// Extract appropriate subvector and generate a vector shuffle
for (int Input=0; Input < 2; ++Input) {
SDValue &Src = Input == 0 ? Src1 : Src2;