(&mut self, func: &Function, block: Block)
| 117 | } |
| 118 | |
| 119 | fn compute_block(&mut self, func: &Function, block: Block) { |
| 120 | inst_predicates::visit_block_succs(func, block, |inst, dest, _| { |
| 121 | self.add_edge(block, inst, dest); |
| 122 | }); |
| 123 | } |
| 124 | |
| 125 | fn invalidate_block_successors(&mut self, block: Block) { |
| 126 | // Temporarily take ownership because we need mutable access to self.data inside the loop. |
no test coverage detected