summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-12-23 23:01:27 +0000
committerDale Johannesen <dalej@apple.com>2008-12-23 23:01:27 +0000
commitacc84e5aa0d514309f861aacb515b3dd083fa3ab (patch)
tree2f6759a0efa4e13a660c3f90e392ce54b5fdaa24 /llvm/lib/CodeGen/SelectionDAG
parent25a767d7f4dd6431a4d0ac7d210c89d0fcfd8d40 (diff)
downloadbcm5719-llvm-acc84e5aa0d514309f861aacb515b3dd083fa3ab.tar.gz
bcm5719-llvm-acc84e5aa0d514309f861aacb515b3dd083fa3ab.zip
Add another permutation where we should get rid of a-a.
llvm-svn: 61401
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index e3525df181a..fe293742562 100644
--- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -1177,13 +1177,20 @@ SDValue DAGCombiner::visitSUB(SDNode *N) {
return N0.getOperand(1);
// fold (A+B)-B -> A
if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
- return N0.getOperand(0);
- // fold ((A+(B-C))-B) -> A-C
+ return N0.getOperand(0);
+ // fold ((A+(B+-C))-B) -> A+-C
if (N0.getOpcode() == ISD::ADD &&
- N0.getOperand(1).getOpcode() == ISD::SUB &&
+ (N0.getOperand(1).getOpcode() == ISD::SUB ||
+ N0.getOperand(1).getOpcode() == ISD::ADD) &&
N0.getOperand(1).getOperand(0) == N1)
- return DAG.getNode(ISD::SUB, VT, N0.getOperand(0),
+ return DAG.getNode(N0.getOperand(1).getOpcode(), VT, N0.getOperand(0),
N0.getOperand(1).getOperand(1));
+ // fold ((A+(C+B))-B) -> A+C
+ if (N0.getOpcode() == ISD::ADD &&
+ N0.getOperand(1).getOpcode() == ISD::ADD &&
+ N0.getOperand(1).getOperand(1) == N1)
+ return DAG.getNode(ISD::ADD, VT, N0.getOperand(0),
+ N0.getOperand(1).getOperand(0));
// fold ((A-(B-C))-C) -> A-B
if (N0.getOpcode() == ISD::SUB &&
N0.getOperand(1).getOpcode() == ISD::SUB &&
OpenPOWER on IntegriCloud