(n, type, name)
| 18221 | g.createStore(name, out).insertAfter(n); |
| 18222 | } |
| 18223 | addNodeInput(n, type, name) { |
| 18224 | const g = n.owningGraph(); |
| 18225 | const inp = g.createLoad(name, type).insertBefore(n).output(); |
| 18226 | n.addInput(inp); |
| 18227 | } |
| 18228 | addIfLoadStores(n) { |
| 18229 | const [true_block, false_block] = n.blocks(); |
| 18230 | const true_vars = this.addControlFlowLoadStores(true_block); |
no test coverage detected