Re-route the inputs and outputs of sgv0 to sgv1 (see _reroute_sgv).
(sgv0, sgv1)
| 447 | |
| 448 | |
| 449 | def reroute_ios(sgv0, sgv1): |
| 450 | """Re-route the inputs and outputs of sgv0 to sgv1 (see _reroute_sgv).""" |
| 451 | return _reroute_sgv(sgv0, sgv1, _RerouteMode.a2b) |
| 452 | |
| 453 | |
| 454 | def remove_control_inputs(op, cops): |
nothing calls this directly
no test coverage detected