(&mut self, target_ip: u32)
| 832 | |
| 833 | #[inline(always)] |
| 834 | fn exec_jump_zero_32(&mut self, target_ip: u32) -> bool { |
| 835 | let cond = <i32>::stack_pop(&mut self.store.value_stack) == 0; |
| 836 | self.jump_if(cond, target_ip) |
| 837 | } |
| 838 | |
| 839 | #[inline(always)] |
| 840 | fn exec_jump_non_zero_32(&mut self, target_ip: u32) -> bool { |