[GlobalISel][Mips] Correct corner case in G_UADDE legalization.
If carryin was 1, and RHS is 0xffffffff we were not giving a carry out. In that case Res would be equal to LHS, so Res <u LHS would be false. But there should be a carry out since carryin+RHS wraps around to 0. Reviewed By: arsenm Differential Revision: https://reviews.llvm.org/D157943
Loading
Please sign in to comment