summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-07-26 13:18:16 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-07-26 13:18:16 +0000
commitc735c1c2aed2cbaeb61296f4269535b5d13d8b0a (patch)
tree7882359e4627974b53ac954fb9b7fa535278a4c2 /lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
parent5a24ed951b7f5e553a7e4e1415da5be247db443e (diff)
downloadllvm-c735c1c2aed2cbaeb61296f4269535b5d13d8b0a.tar.gz
llvm-c735c1c2aed2cbaeb61296f4269535b5d13d8b0a.tar.bz2
llvm-c735c1c2aed2cbaeb61296f4269535b5d13d8b0a.tar.xz
Revert "Add a target legalize hook for SplitVectorOperand"
This reverts commit 187198. It broke the bots. The soft float test probably needs a -triple because of name differences. On the hard float test I am getting a "roundss $1, %xmm0, %xmm0", instead of "vroundss $1, %xmm0, %xmm0, %xmm0". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187201 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp b/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
index 72c16b5d39..75bb6094f5 100644
--- a/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
+++ b/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
@@ -1031,10 +1031,6 @@ bool DAGTypeLegalizer::SplitVectorOperand(SDNode *N, unsigned OpNo) {
dbgs() << "\n");
SDValue Res = SDValue();
- // See if the target wants to custom split this node.
- if (CustomLowerNode(N, N->getOperand(OpNo).getValueType(), false))
- return false;
-
if (Res.getNode() == 0) {
switch (N->getOpcode()) {
default: