A Block is 'filled' when a terminator instruction is present.
(&mut self)
| 1168 | impl<'a> FunctionBuilder<'a> { |
| 1169 | /// A Block is 'filled' when a terminator instruction is present. |
| 1170 | fn fill_current_block(&mut self) { |
| 1171 | self.func_ctx.status[self.position.unwrap()] = BlockStatus::Filled; |
| 1172 | } |
| 1173 | |
| 1174 | fn declare_successor(&mut self, dest_block: Block, jump_inst: Inst) { |
| 1175 | self.func_ctx |