mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-23 16:19:52 +00:00
r139454 activates an assert in a case where we were doing the right thing anyway. Make that explicit, and un-XFAIL the testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139458 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -4615,8 +4615,16 @@ static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
|
|||||||
DecodeVPERM2F128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
|
DecodeVPERM2F128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
|
||||||
ShuffleMask);
|
ShuffleMask);
|
||||||
break;
|
break;
|
||||||
|
case X86ISD::MOVDDUP:
|
||||||
|
case X86ISD::MOVLHPD:
|
||||||
|
case X86ISD::MOVLPD:
|
||||||
|
case X86ISD::MOVLPS:
|
||||||
|
case X86ISD::MOVSHDUP:
|
||||||
|
case X86ISD::MOVSLDUP:
|
||||||
|
case X86ISD::PALIGN:
|
||||||
|
return SDValue(); // Not yet implemented.
|
||||||
default:
|
default:
|
||||||
assert(0 && "not implemented for target shuffle node");
|
assert(0 && "unknown target shuffle node");
|
||||||
return SDValue();
|
return SDValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user