diff options
author | Craig Topper <craig.topper@gmail.com> | 2012-01-31 06:52:44 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2012-01-31 06:52:44 +0000 |
commit | b85e40f7381f7d65a9b8fa88744df9d7d7cbf19c (patch) | |
tree | 5e81c5c1acfd9b3dcce742bf32ec3cadadf846bf /llvm/lib | |
parent | de21b245c664ffa810b933319dd51e56b192761a (diff) | |
download | bcm5719-llvm-b85e40f7381f7d65a9b8fa88744df9d7d7cbf19c.tar.gz bcm5719-llvm-b85e40f7381f7d65a9b8fa88744df9d7d7cbf19c.zip |
Remove pcmpgt/pcmpeq intrinsics as clang is not using them.
llvm-svn: 149367
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 3718f79a49e..90cd3d3b747 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/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(), |