diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2022-08-31 15:24:22 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2022-09-06 14:18:32 +0000 |
| commit | 7348284073e31c1ff357ff1e7810bf7a07fcf7e9 (patch) | |
| tree | 16bd65bb7449f55d5afcaaa202ae9bf3b01681d9 | |
| parent | 104f97e5aa26287ed4b1c2bb4258557700a49da6 (diff) | |
| download | rust-7348284073e31c1ff357ff1e7810bf7a07fcf7e9.tar.gz rust-7348284073e31c1ff357ff1e7810bf7a07fcf7e9.zip | |
Update docs
| -rw-r--r-- | compiler/rustc_middle/src/mir/syntax.rs | 4 |
1 files 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<Coverage>), - /// 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<NonDivergingIntrinsic<'tcx>>), /// No-op. Useful for deleting instructions without affecting statement indices. |
