( Node use )
| 213 | // Return true if the output list is empty afterward. |
| 214 | // Error is 'use' does not exist; ok for 'use' to be null. |
| 215 | protected boolean delUse( Node use ) { |
| 216 | Utils.del(_outputs, Utils.find(_outputs, use)); |
| 217 | return _outputs.isEmpty(); |
| 218 | } |
| 219 | |
| 220 | // Shortcut for "popping" n nodes. A "pop" is basically a |
| 221 | // setDef(last,null) followed by lowering the nIns() count. |