Get all value arguments on `inst` as a mutable slice.
(&mut self, inst: Inst)
| 919 | |
| 920 | /// Get all value arguments on `inst` as a mutable slice. |
| 921 | pub fn inst_args_mut(&mut self, inst: Inst) -> &mut [Value] { |
| 922 | self.insts[inst].arguments_mut(&mut self.value_lists) |
| 923 | } |
| 924 | |
| 925 | /// Get the fixed value arguments on `inst` as a slice. |
| 926 | pub fn inst_fixed_args(&self, inst: Inst) -> &[Value] { |
no outgoing calls