( Node use )
| 195 | // Return true if the output list is empty afterward. |
| 196 | // Error is 'use' does not exist; ok for 'use' to be null. |
| 197 | protected boolean delUse( Node use ) { |
| 198 | Utils.del(_outputs, Utils.find(_outputs, use)); |
| 199 | return _outputs.isEmpty(); |
| 200 | } |
| 201 | |
| 202 | // Shortcut for "popping" n nodes. A "pop" is basically a |
| 203 | // setDef(last,null) followed by lowering the nIns() count. |