| 254 | } |
| 255 | |
| 256 | Function::GetBlocksFunction Function::AugmentedCFGPredecessorsFunction() const { |
| 257 | return [this](const BasicBlock* block) { |
| 258 | auto where = augmented_predecessors_map_.find(block); |
| 259 | return where == augmented_predecessors_map_.end() ? block->predecessors() |
| 260 | : &(*where).second; |
| 261 | }; |
| 262 | } |
| 263 | |
| 264 | Function::GetBlocksFunction Function::AugmentedStructuralCFGSuccessorsFunction() |
| 265 | const { |
no test coverage detected