Go to the bottom of `block` which must be inserted into the layout. At this position, inserted instructions will be appended to `block`.
(&mut self, block: ir::Block)
| 295 | /// Go to the bottom of `block` which must be inserted into the layout. |
| 296 | /// At this position, inserted instructions will be appended to `block`. |
| 297 | fn goto_bottom(&mut self, block: ir::Block) { |
| 298 | debug_assert!(self.layout().is_block_inserted(block)); |
| 299 | self.set_position(CursorPosition::After(block)); |
| 300 | } |
| 301 | |
| 302 | /// Get the next position that a forwards traversal will move to, but do not |
| 303 | /// move this cursor. |
no test coverage detected