| 207 | std::list<Construct>& Function::constructs() { return cfg_constructs_; } |
| 208 | |
| 209 | const BasicBlock* Function::first_block() const { |
| 210 | if (ordered_blocks_.empty()) return nullptr; |
| 211 | return ordered_blocks_[0]; |
| 212 | } |
| 213 | BasicBlock* Function::first_block() { |
| 214 | if (ordered_blocks_.empty()) return nullptr; |
| 215 | return ordered_blocks_[0]; |
no test coverage detected