mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-25 12:50:00 +00:00
Fix a ppc long double regression I introduced yesterday due to a
simplification. This fixes automotive-basicmath on PPC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46072 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a66bb39e97
commit
7e2e033e23
@ -1753,6 +1753,7 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
|
||||
case ISD::FP_EXTEND:
|
||||
assert(MVT::isFloatingPoint(VT) &&
|
||||
MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
|
||||
if (Operand.getValueType() == VT) return Operand; // noop conversion.
|
||||
break;
|
||||
case ISD::SIGN_EXTEND:
|
||||
assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
|
||||
|
Loading…
Reference in New Issue
Block a user