Add a canonicalization that got lost, fixing PowerPC/fold-li.ll:SUB

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23693 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-10-11 06:07:15 +00:00
parent 04ecf6d65f
commit 05b57433e6

View File

@ -517,9 +517,11 @@ SDOperand DAGCombiner::visitSUB(SDNode *N) {
if (N0C && N1C) if (N0C && N1C)
return DAG.getConstant(N0C->getValue() - N1C->getValue(), return DAG.getConstant(N0C->getValue() - N1C->getValue(),
N->getValueType(0)); N->getValueType(0));
// fold (sub x, 0) -> x // fold (sub x, c) -> (add x, -c)
if (N1C && N1C->isNullValue()) if (N1C)
return N0; return DAG.getNode(ISD::ADD, N0.getValueType(), N0,
DAG.getConstant(-N1C->getValue(), N0.getValueType()));
// fold (A+B)-A -> B // fold (A+B)-A -> B
if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1) if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
return N0.getOperand(1); return N0.getOperand(1);