Reset the collections to their empty state (without deallocating their backing data).
(&mut self)
| 73 | /// Reset the collections to their empty state (without deallocating their |
| 74 | /// backing data). |
| 75 | fn reset(&mut self) { |
| 76 | self.ir_to_souper_val.clear(); |
| 77 | self.dfs_stack.clear(); |
| 78 | self.dfs_seen.clear(); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | /// Harvest a candidate LHS for `val` from the dataflow graph. |
no test coverage detected