Creates a jump table in the function, to be used by [`br_table`](InstBuilder::br_table) instructions.
(&mut self, data: JumpTableData)
| 566 | |
| 567 | /// Creates a jump table in the function, to be used by [`br_table`](InstBuilder::br_table) instructions. |
| 568 | pub fn create_jump_table(&mut self, data: JumpTableData) -> JumpTable { |
| 569 | self.func.create_jump_table(data) |
| 570 | } |
| 571 | |
| 572 | /// Creates a sized stack slot in the function, to be used by [`stack_load`](InstBuilder::stack_load), |
| 573 | /// [`stack_store`](InstBuilder::stack_store) and [`stack_addr`](InstBuilder::stack_addr) instructions. |
no outgoing calls