Rollup merge of #75788 - nagisa:mir-call-doccomment, r=wesleywiser

MIR call terminator represents diverging calls too

@bors rollup=always
This commit is contained in:
Dylan DPC 2020-08-22 02:14:59 +02:00 committed by GitHub
commit 2ab6fef19f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,7 +103,7 @@ pub enum TerminatorKind<'tcx> {
unwind: Option<BasicBlock>,
},
/// Block ends with a call of a converging function.
/// Block ends with a call of a function.
Call {
/// The function thats being called.
func: Operand<'tcx>,