We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 104f97e commit 7348284Copy full SHA for 7348284
compiler/rustc_middle/src/mir/syntax.rs
@@ -327,8 +327,8 @@ pub enum StatementKind<'tcx> {
327
/// executed.
328
Coverage(Box<Coverage>),
329
330
- /// Denotes a call to an intrinsic that does not require an unwind path. This avoids
331
- /// adding a new block and a terminator for simple intrinsics.
+ /// Denotes a call to an intrinsic that does not require an unwind path and always returns.
+ /// This avoids adding a new block and a terminator for simple intrinsics.
332
Intrinsic(Box<NonDivergingIntrinsic<'tcx>>),
333
334
/// No-op. Useful for deleting instructions without affecting statement indices.
0 commit comments