(
&self,
inst: Inst,
ss: DynamicStackSlot,
errors: &mut VerifierErrors,
)
| 824 | } |
| 825 | |
| 826 | fn verify_dynamic_stack_slot( |
| 827 | &self, |
| 828 | inst: Inst, |
| 829 | ss: DynamicStackSlot, |
| 830 | errors: &mut VerifierErrors, |
| 831 | ) -> VerifierStepResult { |
| 832 | if !self.func.dynamic_stack_slots.is_valid(ss) { |
| 833 | errors.nonfatal(( |
| 834 | inst, |
| 835 | self.context(inst), |
| 836 | format!("invalid dynamic stack slot {ss}"), |
| 837 | )) |
| 838 | } else { |
| 839 | Ok(()) |
| 840 | } |
| 841 | } |
| 842 | |
| 843 | fn verify_global_value( |
| 844 | &self, |
no test coverage detected