From: Bill Wendling Date: Fri, 21 Nov 2008 07:44:30 +0000 (+0000) Subject: Default to converting UADDO to the generic form that SADDO is converted to. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=137dccd5d86e0d0741f9560970f9b2952221d37c;p=oota-llvm.git 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 --- 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