Get the number of *fixed* result values produced by this opcode. This does not include `variable_args` produced by calls.
(self)
| 732 | /// Get the number of *fixed* result values produced by this opcode. |
| 733 | /// This does not include `variable_args` produced by calls. |
| 734 | pub fn num_fixed_results(self) -> usize { |
| 735 | (self.flags & 0x7) as usize |
| 736 | } |
| 737 | |
| 738 | /// Get the number of *fixed* input values required by this opcode. |
| 739 | /// |
no outgoing calls
no test coverage detected