| 262 | } |
| 263 | |
| 264 | Function::GetBlocksFunction Function::AugmentedStructuralCFGSuccessorsFunction() |
| 265 | const { |
| 266 | return [this](const BasicBlock* block) { |
| 267 | auto where = augmented_successors_map_.find(block); |
| 268 | return where == augmented_successors_map_.end() |
| 269 | ? block->structural_successors() |
| 270 | : &(*where).second; |
| 271 | }; |
| 272 | } |
| 273 | |
| 274 | Function::GetBlocksFunction |
| 275 | Function::AugmentedStructuralCFGPredecessorsFunction() const { |
no test coverage detected