| 390 | } |
| 391 | |
| 392 | inline void Module::AddExtInstDebugInfo(std::unique_ptr<Instruction> d) { |
| 393 | ext_inst_debuginfo_.push_back(std::move(d)); |
| 394 | } |
| 395 | |
| 396 | inline void Module::AddAnnotationInst(std::unique_ptr<Instruction> a) { |
| 397 | annotations_.push_back(std::move(a)); |
no test coverage detected