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