forked from OSchip/llvm-project
Revert 77974. It breaks 3 of the ARM tests.
llvm-svn: 77982
This commit is contained in:
parent
898cd0fced
commit
5f6f72605b
|
@ -47,10 +47,6 @@ void DAGTypeLegalizer::SoftenFloatResult(SDNode *N, unsigned ResNo) {
|
||||||
errs() << "\n");
|
errs() << "\n");
|
||||||
SDValue R = SDValue();
|
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()) {
|
switch (N->getOpcode()) {
|
||||||
default:
|
default:
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
|
@ -539,10 +535,6 @@ bool DAGTypeLegalizer::SoftenFloatOperand(SDNode *N, unsigned OpNo) {
|
||||||
errs() << "\n");
|
errs() << "\n");
|
||||||
SDValue Res = SDValue();
|
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()) {
|
switch (N->getOpcode()) {
|
||||||
default:
|
default:
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
|
|
Loading…
Reference in New Issue