| 251 | } |
| 252 | |
| 253 | inline void BasicBlock::AddInstructions(BasicBlock* bp) { |
| 254 | auto bEnd = end(); |
| 255 | (void)bEnd.MoveBefore(&bp->insts_); |
| 256 | } |
| 257 | |
| 258 | inline bool BasicBlock::WhileEachInst( |
| 259 | const std::function<bool(Instruction*)>& f, bool run_on_debug_line_insts) { |
no test coverage detected