1
Fork 0

Rename mir_const query to mir_built

This commit is contained in:
Oli Scherer 2024-03-20 09:05:22 +00:00
parent 36728f1cdd
commit afdcae2860
8 changed files with 14 additions and 14 deletions

View file

@ -489,7 +489,7 @@ rustc_queries! {
/// ready for const qualification.
///
/// See the README for the `mir` module for details.
query mir_const(key: LocalDefId) -> &'tcx Steal<mir::Body<'tcx>> {
query mir_built(key: LocalDefId) -> &'tcx Steal<mir::Body<'tcx>> {
desc { |tcx| "preparing `{}` for borrow checking", tcx.def_path_str(key) }
}