| 198 | } |
| 199 | |
| 200 | uint32_t BasicBlock::MergeBlockId() const { |
| 201 | uint32_t mbid = MergeBlockIdIfAny(); |
| 202 | assert(mbid && "Expected block to have a corresponding merge block"); |
| 203 | return mbid; |
| 204 | } |
| 205 | |
| 206 | uint32_t BasicBlock::ContinueBlockIdIfAny() const { |
| 207 | auto merge_ii = cend(); |
no outgoing calls
no test coverage detected