[X86] Remove 'else' after return. NFC

llvm-svn: 326642
This commit is contained in:
Craig Topper 2018-03-03 05:18:21 +00:00
parent e3a6062844
commit d4b6601662
1 changed files with 3 additions and 3 deletions

View File

@ -35571,10 +35571,10 @@ static SDValue combineVectorTruncation(SDNode *N, SelectionDAG &DAG,
// truncate 2 x v4i32 to v8i16.
if (Subtarget.hasSSE41() || OutSVT == MVT::i8)
return combineVectorTruncationWithPACKUS(N, DAG, SubVec);
else if (InSVT == MVT::i32)
if (InSVT == MVT::i32)
return combineVectorTruncationWithPACKSS(N, Subtarget, DAG, SubVec);
else
return SDValue();
return SDValue();
}
/// This function transforms vector truncation of 'extended sign-bits' or