r139454 activates an assert in a case where we were doing the right thing anyway...
[oota-llvm.git] / lib / Target / X86 / X86ISelLowering.cpp
index 577f57acded6b549d7fbf99990501cd7ba8c1baa..dbf9ef0193298e3bbeaa66e6a235e34a1c07027f 100644 (file)
@@ -4615,8 +4615,16 @@ static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
       DecodeVPERM2F128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
                            ShuffleMask);
       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:
-      assert(0 && "not implemented for target shuffle node");
+      assert(0 && "unknown target shuffle node");
       return SDValue();
     }