| 111 | } |
| 112 | |
| 113 | void BasicBlock::ForEachSuccessorLabel( |
| 114 | const std::function<void(const uint32_t)>& f) const { |
| 115 | WhileEachSuccessorLabel([f](const uint32_t l) { |
| 116 | f(l); |
| 117 | return true; |
| 118 | }); |
| 119 | } |
| 120 | |
| 121 | bool BasicBlock::WhileEachSuccessorLabel( |
| 122 | const std::function<bool(const uint32_t)>& f) const { |
no test coverage detected