Creates a sized stack slot in the function, to be used by [`stack_load`](InstBuilder::stack_load), [`stack_store`](InstBuilder::stack_store) and [`stack_addr`](InstBuilder::stack_addr) instructions.
(&mut self, data: StackSlotData)
| 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. |
| 574 | pub fn create_sized_stack_slot(&mut self, data: StackSlotData) -> StackSlot { |
| 575 | self.func.create_sized_stack_slot(data) |
| 576 | } |
| 577 | |
| 578 | /// Creates a dynamic stack slot in the function, to be used by |
| 579 | /// [`dynamic_stack_load`](InstBuilder::dynamic_stack_load), |
no outgoing calls
no test coverage detected