[x86] Remove the defunct X86ISD::BLENDV entry -- we use vector selects
authorChandler Carruth <chandlerc@gmail.com>
Thu, 25 Sep 2014 01:16:01 +0000 (01:16 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Thu, 25 Sep 2014 01:16:01 +0000 (01:16 +0000)
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

lib/Target/X86/X86ISelLowering.cpp
lib/Target/X86/X86ISelLowering.h

index 0410b0761b7a119c242eaa9d234b423385052f90..3afc951c60ca04cf6608461769202046d3cb2f3a 100644 (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";
index a16cf4a0b64ebcdcfd48923cbf286e0f6caf8b73..0e6011cdbd9fb5f08de6ccb5c18e8943df2c9284 100644 (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,