diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-11-21 07:44:30 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-11-21 07:44:30 +0000 |
commit | 137dccd5d86e0d0741f9560970f9b2952221d37c (patch) | |
tree | 3312b6ce58ec7d18fab026d0c2ead719f8b40bc9 /lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | 0c73079855de925bf08335fe39b0b112f3d9407a (diff) |
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
Diffstat (limited to 'lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 7074c5980e..13eede7424 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 |