Returns true if the signature has results on the stack.
(&self)
| 637 | |
| 638 | /// Returns true if the signature has results on the stack. |
| 639 | pub fn has_stack_results(&self) -> bool { |
| 640 | self.results.on_stack() |
| 641 | } |
| 642 | } |
| 643 | |
| 644 | /// Align a value up to the given power-of-two-alignment. |
no test coverage detected