summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2012-01-31 06:52:44 +0000
committerCraig Topper <craig.topper@gmail.com>2012-01-31 06:52:44 +0000
commitcac50c5ab8bc2e8a55eb91a4b36d46e1c20c9c64 (patch)
treefa6006f4852a5885a585c7a86d6a9f454528c57e /lib
parent6a89228faca4b30c4abc29b5dec98bdac011ea4c (diff)
Remove pcmpgt/pcmpeq intrinsics as clang is not using them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149367 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/X86/X86ISelLowering.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp
index 3718f79a49e..90cd3d3b747 100644
--- a/lib/Target/X86/X86ISelLowering.cpp
+++ b/lib/Target/X86/X86ISelLowering.cpp
@@ -9492,26 +9492,6 @@ X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const
case Intrinsic::x86_avx2_psrav_d_256:
return DAG.getNode(ISD::SRA, dl, Op.getValueType(),
Op.getOperand(1), Op.getOperand(2));
- case Intrinsic::x86_sse2_pcmpeq_b:
- case Intrinsic::x86_sse2_pcmpeq_w:
- case Intrinsic::x86_sse2_pcmpeq_d:
- case Intrinsic::x86_sse41_pcmpeqq:
- case Intrinsic::x86_avx2_pcmpeq_b:
- case Intrinsic::x86_avx2_pcmpeq_w:
- case Intrinsic::x86_avx2_pcmpeq_d:
- case Intrinsic::x86_avx2_pcmpeq_q:
- return DAG.getNode(X86ISD::PCMPEQ, dl, Op.getValueType(),
- Op.getOperand(1), Op.getOperand(2));
- case Intrinsic::x86_sse2_pcmpgt_b:
- case Intrinsic::x86_sse2_pcmpgt_w:
- case Intrinsic::x86_sse2_pcmpgt_d:
- case Intrinsic::x86_sse42_pcmpgtq:
- case Intrinsic::x86_avx2_pcmpgt_b:
- case Intrinsic::x86_avx2_pcmpgt_w:
- case Intrinsic::x86_avx2_pcmpgt_d:
- case Intrinsic::x86_avx2_pcmpgt_q:
- return DAG.getNode(X86ISD::PCMPGT, dl, Op.getValueType(),
- Op.getOperand(1), Op.getOperand(2));
case Intrinsic::x86_ssse3_pshuf_b_128:
case Intrinsic::x86_avx2_pshuf_b:
return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),