1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

[X86][MMX] Remove the (long time) unused MMX_PINSRW ISD opcode.

llvm-svn: 294596
This commit is contained in:
Simon Pilgrim 2017-02-09 17:08:47 +00:00
parent 5ed841f134
commit 848de2132e
2 changed files with 1 additions and 2 deletions

View File

@ -23800,7 +23800,6 @@ const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
case X86ISD::PINSRB: return "X86ISD::PINSRB";
case X86ISD::PINSRW: return "X86ISD::PINSRW";
case X86ISD::MMX_PINSRW: return "X86ISD::MMX_PINSRW";
case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
case X86ISD::ANDNP: return "X86ISD::ANDNP";
case X86ISD::BLENDI: return "X86ISD::BLENDI";

View File

@ -179,7 +179,7 @@ namespace llvm {
/// Insert the lower 16-bits of a 32-bit value to a vector,
/// corresponds to X86::PINSRW.
PINSRW, MMX_PINSRW,
PINSRW,
/// Shuffle 16 8-bit values within a vector.
PSHUFB,