mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
Reverse postorder instead of using reversed postorder
This commit is contained in:
parent
0e0dc59acb
commit
27242437c7
@ -30,7 +30,13 @@ pub fn visit_local_usage(locals: &[Local], mir: &Body<'_>, location: Location) -
|
||||
locals.len()
|
||||
];
|
||||
|
||||
traversal::ReversePostorder::new(mir, location.block).try_fold(init, |usage, (tbb, tdata)| {
|
||||
traversal::Postorder::new(&mir.basic_blocks, location.block)
|
||||
.collect::<Vec<_>>()
|
||||
.into_iter()
|
||||
.rev()
|
||||
.try_fold(init, |usage, tbb| {
|
||||
let tdata = &mir.basic_blocks[tbb];
|
||||
|
||||
// Give up on loops
|
||||
if tdata.terminator().successors().any(|s| s == location.block) {
|
||||
return None;
|
||||
|
Loading…
Reference in New Issue
Block a user