Expand comment on disappearing edge.

This commit is contained in:
Camille GILLOT 2023-10-20 15:51:46 +00:00
parent a845bac6ba
commit dd08dd42e5

View file

@ -645,7 +645,7 @@ fn apply_once(&mut self, index: usize, body: &mut Body<'_>) {
debug!(?current, ?succ);
// `succ` must be a successor of `current`. If it is not, this means this TO is not
// satisfiable, so we bail out.
// satisfiable and a previous TO erased this edge, so we bail out.
if basic_blocks[current].terminator().successors().find(|s| *s == succ).is_none() {
debug!("impossible");
return;