(&mut self)
| 283 | |
| 284 | impl RegIndexEnv { |
| 285 | fn next_gpr(&mut self) -> Option<u8> { |
| 286 | (self.int.index < self.int.limit) |
| 287 | .then(|| Self::increment(&mut self.int.index)) |
| 288 | .flatten() |
| 289 | } |
| 290 | |
| 291 | fn next_fpr(&mut self) -> Option<u8> { |
| 292 | if let Some(f) = self.float.as_mut() { |
no test coverage detected