| 233 | } |
| 234 | |
| 235 | void instruction::replace_mod_argument(instruction_ref ins, module_ref old, module_ref new_mod) |
| 236 | { |
| 237 | ins->replace_mod_argument(old, new_mod); |
| 238 | backreference(ins); |
| 239 | ins->recompute_shape(); |
| 240 | } |
| 241 | |
| 242 | void instruction::replace(instruction_ref ins, |
| 243 | operation o, |
nothing calls this directly
no test coverage detected