| 56 | } |
| 57 | |
| 58 | void Construct::set_corresponding_constructs( |
| 59 | std::vector<Construct*> constructs) { |
| 60 | assert(ValidateConstructSize(type_, constructs.size())); |
| 61 | corresponding_constructs_ = constructs; |
| 62 | } |
| 63 | |
| 64 | const BasicBlock* Construct::entry_block() const { return entry_block_; } |
| 65 | BasicBlock* Construct::entry_block() { return entry_block_; } |
no test coverage detected