Clear the list of result values from `inst`. This leaves `inst` without any result values. New result values can be created by calling `make_inst_results` or by using a `replace(inst)` builder.
(&mut self, inst: Inst)
| 1016 | /// This leaves `inst` without any result values. New result values can be created by calling |
| 1017 | /// `make_inst_results` or by using a `replace(inst)` builder. |
| 1018 | pub fn clear_results(&mut self, inst: Inst) { |
| 1019 | self.results[inst].clear(&mut self.value_lists) |
| 1020 | } |
| 1021 | |
| 1022 | /// Replace an instruction result with a new value of type `new_type`. |
| 1023 | /// |