8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
visit_block_entry
DataflowResultsConsumer
1 parent 85a360e commit 2ce227dCopy full SHA for 2ce227d
src/librustc_mir/dataflow/mod.rs
@@ -333,6 +333,8 @@ pub(crate) trait DataflowResultsConsumer<'a, 'tcx: 'a> {
333
}
334
335
fn process_basic_block(&mut self, bb: BasicBlock, flow_state: &mut Self::FlowState) {
336
+ self.visit_block_entry(bb, flow_state);
337
+
338
let BasicBlockData { ref statements, ref terminator, is_cleanup: _ } =
339
self.body()[bb];
340
let mut location = Location { block: bb, statement_index: 0 };
0 commit comments