1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

Remove now useless check, because the code can be matched below, no need to leave it for isel

llvm-svn: 113242
This commit is contained in:
Bruno Cardoso Lopes 2010-09-07 18:29:03 +00:00
parent 2625d9a286
commit dcc8690051

View File

@ -5273,7 +5273,7 @@ X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
// Promote splats to v4f32.
if (SVOp->isSplat()) {
if (isMMX || NumElems < 4)
if (isMMX)
return Op;
return PromoteSplat(SVOp, DAG);
}