Merge remote-tracking branch 'origin/GP-4684_caheckman_PR-6540_LukeSerne_decomp-fix-subflow-float-less-input-order'

This commit is contained in:
Ryan Kurtz 2024-06-12 11:17:21 -04:00
commit 4816e3945f

View file

@ -2654,8 +2654,8 @@ bool SubfloatFlow::traceForward(TransformVar *rvn)
} }
if (preexistingGuard(slot, rvn2)) { if (preexistingGuard(slot, rvn2)) {
TransformOp *rop = newPreexistingOp(2, op->code(), op); TransformOp *rop = newPreexistingOp(2, op->code(), op);
opSetInput(rop, rvn, 0); opSetInput(rop, rvn, slot);
opSetInput(rop, rvn2, 1); opSetInput(rop, rvn2, 1 - slot);
terminatorCount += 1; terminatorCount += 1;
} }
break; break;