diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2022-05-08 14:11:30 +0200 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2023-04-20 18:01:07 +0000 |
| commit | a395d2a5debac5dd73fb2ccfbfb749a2df5baf69 (patch) | |
| tree | e57b5314ce9b033251af38d2c6e3d40a662eb0f9 /compiler/rustc_middle/src/query | |
| parent | f65f506d600282fdc45bfebf3cc0be29be33a325 (diff) | |
| download | rust-a395d2a5debac5dd73fb2ccfbfb749a2df5baf69.tar.gz rust-a395d2a5debac5dd73fb2ccfbfb749a2df5baf69.zip | |
Give more descriptive names to queries.
Diffstat (limited to 'compiler/rustc_middle/src/query')
| -rw-r--r-- | compiler/rustc_middle/src/query/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs index 204ac97125d..f81c1c39fc1 100644 --- a/compiler/rustc_middle/src/query/mod.rs +++ b/compiler/rustc_middle/src/query/mod.rs @@ -426,7 +426,7 @@ rustc_queries! { &'tcx Steal<IndexVec<mir::Promoted, mir::Body<'tcx>>> ) { no_hash - desc { |tcx| "processing MIR for `{}`", tcx.def_path_str(key.to_def_id()) } + desc { |tcx| "promoting constants in MIR for `{}`", tcx.def_path_str(key.to_def_id()) } } query closure_typeinfo(key: LocalDefId) -> ty::ClosureTypeInfo<'tcx> { |
