aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 a4f3b1eb96..5957e3a503 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