| 370 | } |
| 371 | |
| 372 | inline void Module::AddGraphEntryPoint(std::unique_ptr<Instruction> e) { |
| 373 | graph_entry_points_.push_back(std::move(e)); |
| 374 | } |
| 375 | |
| 376 | inline void Module::AddExecutionMode(std::unique_ptr<Instruction> e) { |
| 377 | execution_modes_.push_back(std::move(e)); |
no test coverage detected