aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2009-08-03 19:06:29 +0000
committerBob Wilson <bob.wilson@apple.com>2009-08-03 19:06:29 +0000
commit564f681bc2473228458c54d34cf0f95a174553aa (patch)
tree4f8a3f0f5898233fac9a5dc0fc7f8eeb0ec86f8f /lib/CodeGen
parentcd6d09d559d15e0b9f5a4d782073c2f0892d5f11 (diff)
downloadexternal_llvm-564f681bc2473228458c54d34cf0f95a174553aa.zip
external_llvm-564f681bc2473228458c54d34cf0f95a174553aa.tar.gz
external_llvm-564f681bc2473228458c54d34cf0f95a174553aa.tar.bz2
Revert 77974. It breaks 3 of the ARM tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77982 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp b/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
index a4f3b1e..5957e3a 100644
--- a/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
+++ b/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
@@ -47,10 +47,6 @@ void DAGTypeLegalizer::SoftenFloatResult(SDNode *N, unsigned ResNo) {
errs() << "\n");
SDValue R = SDValue();
- // See if the target wants to custom handle softening this result.
- if (CustomLowerNode(N, N->getValueType(ResNo), true))
- return;
-
switch (N->getOpcode()) {
default:
#ifndef NDEBUG
@@ -539,10 +535,6 @@ bool DAGTypeLegalizer::SoftenFloatOperand(SDNode *N, unsigned OpNo) {
errs() << "\n");
SDValue Res = SDValue();
- // See if target wants to custom handle softening this operand.
- if (CustomLowerNode(N, N->getOperand(OpNo).getValueType(), false))
- return false;
-
switch (N->getOpcode()) {
default:
#ifndef NDEBUG