diff options
| author | Yuri Astrakhan <YuriAstrakhan@gmail.com> | 2022-03-30 17:28:19 -0400 |
|---|---|---|
| committer | Yuri Astrakhan <YuriAstrakhan@gmail.com> | 2022-03-30 17:28:19 -0400 |
| commit | 8d7b124c1f8d3ed8784b5c1a092c5d8016f6935a (patch) | |
| tree | c28308133ddc8ad5141c8f2fb30ef99a5284ca8f /compiler/rustc_mir_transform | |
| parent | a6dd6582540ad20e385bcf8326968aa94f33694b (diff) | |
| download | rust-8d7b124c1f8d3ed8784b5c1a092c5d8016f6935a.tar.gz rust-8d7b124c1f8d3ed8784b5c1a092c5d8016f6935a.zip | |
a few mode feedback fixes per @bjorn3
Diffstat (limited to 'compiler/rustc_mir_transform')
| -rw-r--r-- | compiler/rustc_mir_transform/src/simplify_try.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_mir_transform/src/simplify_try.rs b/compiler/rustc_mir_transform/src/simplify_try.rs index 70e2e8d75e8..ce4b45062e8 100644 --- a/compiler/rustc_mir_transform/src/simplify_try.rs +++ b/compiler/rustc_mir_transform/src/simplify_try.rs @@ -72,7 +72,7 @@ struct ArmIdentityInfo<'tcx> { /// (StorageLive index,, StorageDead index, Local) storage_stmts: Vec<(usize, usize, Local)>, - /// The statements that should be removed (turned into noops) + /// The statements that should be removed (turned into nops) stmts_to_remove: Vec<usize>, /// Indices of debug variables that need to be adjusted to point to |
