( Node use )
| 235 | // Return true if the output list is empty afterward. |
| 236 | // Error is 'use' does not exist; ok for 'use' to be null. |
| 237 | public boolean delUse( Node use ) { |
| 238 | _outputs.del(_outputs.find(use)); |
| 239 | return _outputs.isEmpty(); |
| 240 | } |
| 241 | |
| 242 | // Shortcut for "popping" until n nodes. A "pop" is basically a |
| 243 | // setDef(last,null) followed by lowering the nIns() count. |