Rename a few remaining references to abort terminator
Follow up to e3f2edc75b
This commit is contained in:
parent
bbcc1691a4
commit
552abdce50
2 changed files with 2 additions and 2 deletions
|
|
@ -1640,7 +1640,7 @@ impl<'a, 'tcx> TypeChecker<'a, 'tcx> {
|
|||
}
|
||||
TerminatorKind::UnwindTerminate(_) => {
|
||||
if !is_cleanup {
|
||||
span_mirbug!(self, block_data, "abort on non-cleanup block!")
|
||||
span_mirbug!(self, block_data, "terminate on non-cleanup block!")
|
||||
}
|
||||
}
|
||||
TerminatorKind::Return => {
|
||||
|
|
|
|||
|
|
@ -785,7 +785,7 @@ impl<'tcx> TerminatorKind<'tcx> {
|
|||
CoroutineDrop => write!(fmt, "coroutine_drop"),
|
||||
UnwindResume => write!(fmt, "resume"),
|
||||
UnwindTerminate(reason) => {
|
||||
write!(fmt, "abort({})", reason.as_short_str())
|
||||
write!(fmt, "terminate({})", reason.as_short_str())
|
||||
}
|
||||
Yield { value, resume_arg, .. } => write!(fmt, "{resume_arg:?} = yield({value:?})"),
|
||||
Unreachable => write!(fmt, "unreachable"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue