[x86] Remove the defunct X86ISD::BLENDV entry -- we use vector selects

for this now.

Should prevent folks from running afoul of this and not knowing why
their code won't instruction select the way I just did...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218436 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth 2014-09-25 01:16:01 +00:00
parent ef673b3c73
commit 6a289bb491
2 changed files with 0 additions and 4 deletions

View File

@ -18295,7 +18295,6 @@ const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
case X86ISD::ANDNP: return "X86ISD::ANDNP";
case X86ISD::PSIGN: return "X86ISD::PSIGN";
case X86ISD::BLENDV: return "X86ISD::BLENDV";
case X86ISD::BLENDI: return "X86ISD::BLENDI";
case X86ISD::SUBUS: return "X86ISD::SUBUS";
case X86ISD::HADD: return "X86ISD::HADD";

View File

@ -187,9 +187,6 @@ namespace llvm {
/// PSIGN - Copy integer sign.
PSIGN,
/// BLENDV - Blend where the selector is a register.
BLENDV,
/// BLENDI - Blend where the selector is an immediate.
BLENDI,