Skip to content

Commit d3c3051

Browse files
committedApr 17, 2024·
Move confusing comment about otherwise blocks in lower_match_tree
This comment was historically inside a block guarded by `if let Some(otherwise_block) = otherwise`. When #120978 made the otherwise block non-optional, it also flattened that region of code. Doing so left this comment awkwardly stranded above an unrelated line of code, without its original context. We can restore that context by moving it above the declaration of `otherwise`.
1 parent 6c6b302 commit d3c3051

File tree

1 file changed

+3
-3
lines changed
  • compiler/rustc_mir_build/src/build/matches

1 file changed

+3
-3
lines changed
 

‎compiler/rustc_mir_build/src/build/matches/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -385,15 +385,15 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
385385
let fake_borrows = match_has_guard
386386
.then(|| util::FakeBorrowCollector::collect_fake_borrows(self, candidates));
387387

388+
// See the doc comment on `match_candidates` for why we have an
389+
// otherwise block. Match checking will ensure this is actually
390+
// unreachable.
388391
let otherwise_block = self.cfg.start_new_block();
389392

390393
// This will generate code to test scrutinee_place and
391394
// branch to the appropriate arm block
392395
self.match_candidates(match_start_span, scrutinee_span, block, otherwise_block, candidates);
393396

394-
// See the doc comment on `match_candidates` for why we may have an
395-
// otherwise block. Match checking will ensure this is actually
396-
// unreachable.
397397
let source_info = self.source_info(scrutinee_span);
398398

399399
// Matching on a `scrutinee_place` with an uninhabited type doesn't

0 commit comments

Comments
 (0)
Please sign in to comment.