| 224 | } |
| 225 | |
| 226 | void instruction::replace_argument(instruction_ref ins, |
| 227 | instruction_ref old, |
| 228 | instruction_ref new_ins) |
| 229 | { |
| 230 | ins->replace_argument(old, new_ins); |
| 231 | backreference(ins); |
| 232 | ins->recompute_shape(); |
| 233 | } |
| 234 | |
| 235 | void instruction::replace_mod_argument(instruction_ref ins, module_ref old, module_ref new_mod) |
| 236 | { |
nothing calls this directly
no test coverage detected