summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-11-21 07:44:30 +0000
committerBill Wendling <isanbard@gmail.com>2008-11-21 07:44:30 +0000
commit0b5be6c5e0235525d8ec57978f373d2dfeef8299 (patch)
tree8175315f557639d6bbe0aecb9abc9da71e74a168 /llvm/lib/CodeGen/SelectionDAG
parent07d726ec4dbb2ff06f4b00eded264a849fce1a28 (diff)
downloadbcm5719-llvm-0b5be6c5e0235525d8ec57978f373d2dfeef8299.tar.gz
bcm5719-llvm-0b5be6c5e0235525d8ec57978f373d2dfeef8299.zip
Default to converting UADDO to the generic form that SADDO is converted to.
llvm-svn: 59801
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index 7074c5980e6..13eede7424d 100644
--- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -5174,7 +5174,7 @@ SDValue DAGCombiner::visitSADDO(SDNode *N) {
}
SDValue DAGCombiner::visitUADDO(SDNode *N) {
- return SDValue();
+ return visitSADDO(N);
}
/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
OpenPOWER on IntegriCloud