From 7348284073e31c1ff357ff1e7810bf7a07fcf7e9 Mon Sep 17 00:00:00 2001 From: Oli Scherer Date: Wed, 31 Aug 2022 15:24:22 +0000 Subject: [PATCH] Update docs --- compiler/rustc_middle/src/mir/syntax.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/rustc_middle/src/mir/syntax.rs b/compiler/rustc_middle/src/mir/syntax.rs index 62306159e88..bf63b8efaf7 100644 --- a/compiler/rustc_middle/src/mir/syntax.rs +++ b/compiler/rustc_middle/src/mir/syntax.rs @@ -327,8 +327,8 @@ pub enum StatementKind<'tcx> { /// executed. Coverage(Box), - /// Denotes a call to an intrinsic that does not require an unwind path. This avoids - /// 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. Intrinsic(Box>), /// No-op. Useful for deleting instructions without affecting statement indices. -- 2.44.0