Skip to main content

luaur_code_gen/methods/
ir_lowering_a_64_is_fallthrough_block.rs

1use crate::records::ir_block::IrBlock;
2use crate::records::ir_lowering_a_64::IrLoweringA64;
3
4impl IrLoweringA64 {
5    pub fn ir_lowering_a_64_is_fallthrough_block(&self, target: &IrBlock, next: &IrBlock) -> bool {
6        target.start == next.start
7    }
8}