| 246 | } |
| 247 | |
| 248 | Function::GetBlocksFunction Function::AugmentedCFGSuccessorsFunction() const { |
| 249 | return [this](const BasicBlock* block) { |
| 250 | auto where = augmented_successors_map_.find(block); |
| 251 | return where == augmented_successors_map_.end() ? block->successors() |
| 252 | : &(*where).second; |
| 253 | }; |
| 254 | } |
| 255 | |
| 256 | Function::GetBlocksFunction Function::AugmentedCFGPredecessorsFunction() const { |
| 257 | return [this](const BasicBlock* block) { |
no test coverage detected