mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Legalize support for MUL_LOHI and DIVREM.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42636 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2eb4ebd953
commit
e14ea86744
@ -2630,6 +2630,16 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
|
||||
}
|
||||
break;
|
||||
|
||||
case ISD::SMUL_LOHI:
|
||||
case ISD::UMUL_LOHI:
|
||||
case ISD::SDIVREM:
|
||||
case ISD::UDIVREM:
|
||||
// These nodes will only be produced by target-specific lowering, so
|
||||
// they shouldn't be here if they aren't legal.
|
||||
assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
|
||||
"This must be legal!");
|
||||
break;
|
||||
|
||||
case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
|
||||
Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
|
||||
switch (getTypeAction(Node->getOperand(1).getValueType())) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user