We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a845bac commit dd08dd4Copy full SHA for dd08dd4
compiler/rustc_mir_transform/src/jump_threading.rs
@@ -645,7 +645,7 @@ impl OpportunitySet {
645
debug!(?current, ?succ);
646
647
// `succ` must be a successor of `current`. If it is not, this means this TO is not
648
- // satisfiable, so we bail out.
+ // satisfiable and a previous TO erased this edge, so we bail out.
649
if basic_blocks[current].terminator().successors().find(|s| *s == succ).is_none() {
650
debug!("impossible");
651
return;
0 commit comments