Skip to content

Commit dd08dd4

Browse files
committed
Expand comment on disappearing edge.
1 parent a845bac commit dd08dd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_mir_transform/src/jump_threading.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ impl OpportunitySet {
645645
debug!(?current, ?succ);
646646

647647
// `succ` must be a successor of `current`. If it is not, this means this TO is not
648-
// satisfiable, so we bail out.
648+
// satisfiable and a previous TO erased this edge, so we bail out.
649649
if basic_blocks[current].terminator().successors().find(|s| *s == succ).is_none() {
650650
debug!("impossible");
651651
return;

0 commit comments

Comments
 (0)