| 395 | } |
| 396 | |
| 397 | instruction_ref module::remove_instruction(instruction_ref ins) |
| 398 | { |
| 399 | assert(has_instruction(ins)); |
| 400 | assert(ins->outputs().empty()); |
| 401 | ins->clear_arguments(); |
| 402 | return impl->erase(ins); |
| 403 | } |
| 404 | |
| 405 | instruction_ref module::remove_instructions(instruction_ref first, instruction_ref last) |
| 406 | { |