Returns the length of results on the stack.
(&self)
| 388 | |
| 389 | /// Returns the length of results on the stack. |
| 390 | pub fn stack_operands_len(&self) -> usize { |
| 391 | self.operands().len() - self.regs().len() |
| 392 | } |
| 393 | |
| 394 | /// Get the [`ABIOperand`] result in the nth position. |
| 395 | #[cfg(test)] |
no test coverage detected