diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-26 13:18:16 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-26 13:18:16 +0000 |
commit | 1d812728cc0ddeb69b9f0d3d2d7d29fa4295086f (patch) | |
tree | e56470d2c3524e9a49a3f93e96695281845e29cd /llvm/lib/CodeGen | |
parent | 88ac12591cc20dc17fc876790fc952e91f1c3b64 (diff) | |
download | bcm5719-llvm-1d812728cc0ddeb69b9f0d3d2d7d29fa4295086f.tar.gz bcm5719-llvm-1d812728cc0ddeb69b9f0d3d2d7d29fa4295086f.zip |
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".
llvm-svn: 187201
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp index 72c16b5d39e..75bb6094f56 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp +++ b/llvm/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: |