mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Fix thinko.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98158 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2dacd1e987
commit
25ab35e8c7
@ -584,7 +584,7 @@ LowerUMUL_LOHI(SDValue Op, SelectionDAG &DAG)
|
||||
}
|
||||
|
||||
SDValue XCoreTargetLowering::
|
||||
TryExpandADDSUBWithMul(SDNode *N, SelectionDAG &DAG)
|
||||
TryExpandADDWithMul(SDNode *N, SelectionDAG &DAG)
|
||||
{
|
||||
SDValue Mul;
|
||||
SDValue Other;
|
||||
@ -650,9 +650,11 @@ ExpandADDSUB(SDNode *N, SelectionDAG &DAG)
|
||||
(N->getOpcode() == ISD::ADD || N->getOpcode() == ISD::SUB) &&
|
||||
"Unknown operand to lower!");
|
||||
|
||||
SDValue Result = TryExpandADDSUBWithMul(N, DAG);
|
||||
if (Result.getNode() != 0)
|
||||
return Result;
|
||||
if (N->getOpcode() == ISD::ADD) {
|
||||
SDValue Result = TryExpandADDWithMul(N, DAG);
|
||||
if (Result.getNode() != 0)
|
||||
return Result;
|
||||
}
|
||||
|
||||
DebugLoc dl = N->getDebugLoc();
|
||||
|
||||
|
@ -151,7 +151,7 @@ namespace llvm {
|
||||
EVT VT) const;
|
||||
|
||||
// Expand specifics
|
||||
SDValue TryExpandADDSUBWithMul(SDNode *Op, SelectionDAG &DAG);
|
||||
SDValue TryExpandADDWithMul(SDNode *Op, SelectionDAG &DAG);
|
||||
SDValue ExpandADDSUB(SDNode *Op, SelectionDAG &DAG);
|
||||
|
||||
virtual SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const;
|
||||
|
Loading…
x
Reference in New Issue
Block a user