| 218 | } |
| 219 | |
| 220 | void instruction::backreference(instruction_ref ref) |
| 221 | { |
| 222 | for(auto&& arg : ref->inputs()) |
| 223 | arg->add_output(ref); |
| 224 | } |
| 225 | |
| 226 | void instruction::replace_argument(instruction_ref ins, |
| 227 | instruction_ref old, |
nothing calls this directly
no test coverage detected