Retrieves all the parameters for a [`Block`] currently inferred from the jump instructions inserted that target it and the SSA construction.
(&self, block: Block)
| 735 | /// Retrieves all the parameters for a [`Block`] currently inferred from the jump instructions |
| 736 | /// inserted that target it and the SSA construction. |
| 737 | pub fn block_params(&self, block: Block) -> &[Value] { |
| 738 | self.func.dfg.block_params(block) |
| 739 | } |
| 740 | |
| 741 | /// Retrieves the signature with reference `sigref` previously added with |
| 742 | /// [`import_signature`](Self::import_signature). |
no outgoing calls