(&mut self)
| 858 | } |
| 859 | |
| 860 | pub(crate) fn elaborate(&mut self) { |
| 861 | self.stats.elaborate_func += 1; |
| 862 | self.stats.elaborate_func_pre_insts += self.func.dfg.num_insts() as u64; |
| 863 | self.compute_best_values(); |
| 864 | self.elaborate_domtree(&self.domtree); |
| 865 | self.stats.elaborate_func_post_insts += self.func.dfg.num_insts() as u64; |
| 866 | } |
| 867 | } |
nothing calls this directly
no test coverage detected