| 238 | } |
| 239 | |
| 240 | inline void Function::AddDebugInstructionInHeader( |
| 241 | std::unique_ptr<Instruction> p) { |
| 242 | debug_insts_in_header_.push_back(std::move(p)); |
| 243 | } |
| 244 | |
| 245 | inline void Function::AddBasicBlock(std::unique_ptr<BasicBlock> b) { |
| 246 | AddBasicBlock(std::move(b), end()); |
no test coverage detected