(n)
| 18537 | this.transformExits(this._graph.block()); |
| 18538 | } |
| 18539 | destroyNodeAfterExit(n) { |
| 18540 | for (const output of n.outputs()) { |
| 18541 | if (output.uses().length > 0) { |
| 18542 | output.replaceAllUsesWith(this.getUnitValue(output.type())); |
| 18543 | } |
| 18544 | } |
| 18545 | n.destroy(); |
| 18546 | } |
| 18547 | deleteAfterExitNodes(block, iter) { |
| 18548 | const nodes = block.nodes(); |
| 18549 | if (iter === nodes.end()) { |
no test coverage detected