(&mut self, delta: u32, caches: u32)
| 6883 | /// targets, and debug builds will catch overflow via Rust's default checks. |
| 6884 | #[inline] |
| 6885 | fn jump_relative_forward(&mut self, delta: u32, caches: u32) { |
| 6886 | let target = self.lasti() + caches + delta; |
| 6887 | self.update_lasti(|i| *i = target); |
| 6888 | } |
| 6889 | |
| 6890 | /// Jump backward by `delta` code units from after instruction + caches. |
| 6891 | /// |
no test coverage detected