Set the current control stack frame as a branch target.
(&mut self)
| 634 | |
| 635 | /// Set the current control stack frame as a branch target. |
| 636 | pub fn set_as_target(&mut self) { |
| 637 | match self { |
| 638 | ControlStackFrame::Block { |
| 639 | is_branch_target, .. |
| 640 | } => { |
| 641 | *is_branch_target = true; |
| 642 | } |
| 643 | _ => {} |
| 644 | } |
| 645 | } |
| 646 | |
| 647 | /// Returns [`crate::abi::ABIResults`] of the control stack frame |
| 648 | /// block. |
no outgoing calls
no test coverage detected