( Node use )
| 174 | // Return true if the output list is empty afterward. |
| 175 | // Error is 'use' does not exist; ok for 'use' to be null. |
| 176 | protected boolean delUse( Node use ) { |
| 177 | Utils.del(_outputs, Utils.find(_outputs, use)); |
| 178 | return _outputs.isEmpty(); |
| 179 | } |
| 180 | |
| 181 | // Shortcut for "popping" n nodes. A "pop" is basically a |
| 182 | // setDef(last,null) followed by lowering the nIns() count. |