| 289 | } |
| 290 | |
| 291 | instruction_ref module::add_instruction(const operation& op, std::vector<instruction_ref> args) |
| 292 | { |
| 293 | return insert_instruction(this->insert_end(), op, std::move(args)); |
| 294 | } |
| 295 | instruction_ref module::insert_instruction(instruction_ref ins, |
| 296 | const operation& op, |
| 297 | std::vector<instruction_ref> args) |
no test coverage detected