We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
UnwindAction::Continue
1 parent 54d6738 commit c462291Copy full SHA for c462291
compiler/rustc_middle/src/mir/terminator.rs
@@ -272,7 +272,8 @@ impl<'tcx> Debug for TerminatorKind<'tcx> {
272
273
let unwind = match self.unwind() {
274
// Not needed or included in successors
275
- None | Some(UnwindAction::Continue) | Some(UnwindAction::Cleanup(_)) => None,
+ None | Some(UnwindAction::Cleanup(_)) => None,
276
+ Some(UnwindAction::Continue) => Some("unwind continue"),
277
Some(UnwindAction::Unreachable) => Some("unwind unreachable"),
278
Some(UnwindAction::Terminate) => Some("unwind terminate"),
279
};
0 commit comments