forked from OSchip/llvm-project
Default to converting UADDO to the generic form that SADDO is converted to.
llvm-svn: 59801
This commit is contained in:
parent
07d726ec4d
commit
0b5be6c5e0
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue