diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-12-13 17:25:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-13 17:25:29 +0100 |
| commit | c6ebe6fe3bb538a17d9572cf5dcc26daa91bbdb6 (patch) | |
| tree | 6512535c0b5bf4252ef749f03d9fd8abc353514b /compiler/rustc_const_eval | |
| parent | c1810269e98411ab546330b230ea20d9f632cd84 (diff) | |
| parent | dddc09d2c359b57e43a0a6729e0d5e84894fbfe9 (diff) | |
| download | rust-c6ebe6fe3bb538a17d9572cf5dcc26daa91bbdb6.tar.gz rust-c6ebe6fe3bb538a17d9572cf5dcc26daa91bbdb6.zip | |
Rollup merge of #133938 - nnethercote:rustc_mir_dataflow-renamings, r=oli-obk
`rustc_mir_dataflow` cleanups, including some renamings Some opinionated commits in this collection, let's see how we go. r? `@cjgillot`
Diffstat (limited to 'compiler/rustc_const_eval')
| -rw-r--r-- | compiler/rustc_const_eval/src/check_consts/resolver.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_const_eval/src/check_consts/resolver.rs b/compiler/rustc_const_eval/src/check_consts/resolver.rs index 0f9a460ca1b..763c37a41af 100644 --- a/compiler/rustc_const_eval/src/check_consts/resolver.rs +++ b/compiler/rustc_const_eval/src/check_consts/resolver.rs @@ -329,7 +329,7 @@ where self.transfer_function(state).initialize_state(); } - fn apply_statement_effect( + fn apply_primary_statement_effect( &mut self, state: &mut Self::Domain, statement: &mir::Statement<'tcx>, @@ -338,7 +338,7 @@ where self.transfer_function(state).visit_statement(statement, location); } - fn apply_terminator_effect<'mir>( + fn apply_primary_terminator_effect<'mir>( &mut self, state: &mut Self::Domain, terminator: &'mir mir::Terminator<'tcx>, |
