( Node use )
| 227 | // Return true if the output list is empty afterward. |
| 228 | // Error is 'use' does not exist; ok for 'use' to be null. |
| 229 | protected boolean delUse( Node use ) { |
| 230 | _outputs.del(_outputs.find(use)); |
| 231 | return _outputs.isEmpty(); |
| 232 | } |
| 233 | |
| 234 | // Shortcut for "popping" until n nodes. A "pop" is basically a |
| 235 | // setDef(last,null) followed by lowering the nIns() count. |