| 190 | size_t Function::block_count() const { return blocks_.size(); } |
| 191 | |
| 192 | size_t Function::undefined_block_count() const { |
| 193 | return undefined_blocks_.size(); |
| 194 | } |
| 195 | |
| 196 | const std::vector<BasicBlock*>& Function::ordered_blocks() const { |
| 197 | return ordered_blocks_; |
no test coverage detected