File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
compiler/rustc_mir_transform/src/coverage Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -341,15 +341,15 @@ fn bcb_filtered_successors<'a, 'tcx>(terminator: &'a Terminator<'tcx>) -> Covera
341
341
| FalseUnwind { real_target : target, .. }
342
342
| Goto { target } => CoverageSuccessors :: Chainable ( target) ,
343
343
344
- // A call terminator can normally be chained, except when they have no
345
- // successor because they are known to diverge.
344
+ // A call terminator can normally be chained, except when it has no
345
+ // successor because it is known to diverge.
346
346
Call { target : maybe_target, .. } => match maybe_target {
347
347
Some ( target) => CoverageSuccessors :: Chainable ( target) ,
348
348
None => CoverageSuccessors :: NotChainable ( & [ ] ) ,
349
349
} ,
350
350
351
- // An inline asm terminator can normally be chained, except when it diverges or uses asm
352
- // goto.
351
+ // An inline asm terminator can normally be chained, except when it
352
+ // diverges or uses asm goto.
353
353
InlineAsm { ref targets, .. } => {
354
354
if let [ target] = targets[ ..] {
355
355
CoverageSuccessors :: Chainable ( target)
You can’t perform that action at this time.
0 commit comments