From 137dccd5d86e0d0741f9560970f9b2952221d37c Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Fri, 21 Nov 2008 07:44:30 +0000 Subject: [PATCH] Default to converting UADDO to the generic form that SADDO is converted to. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59801 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 7074c5980e6..13eede7424d 100644 --- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/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