3232//! - `arena_cache`: Use an arena for in-memory caching of the query result.
3333//! - `cache_on_disk_if { ... }`: Cache the query result to disk if the provided block evaluates to
3434//! true. The query key identifier is available for use within the block, as is `tcx`.
35- //! - `cycle_delay_bug `: If a dependency cycle is detected, emit a delayed bug instead of aborting immediately.
35+ //! - `cycle_delayed_bug `: If a dependency cycle is detected, emit a delayed bug instead of aborting immediately.
3636//! - `cycle_stash`: If a dependency cycle is detected, stash the error for later handling.
3737//! - `no_hash`: Do not hash the query result for incremental compilation; just mark as dirty if recomputed.
3838//! - `anon`: Make the query anonymous in the dependency graph (no dep node is created).
@@ -595,7 +595,7 @@ rustc_queries! {
595595 // `Representability` will print a custom error about the infinite size and then abort
596596 // compilation. (In the past we recovered and continued, but in practice that leads to
597597 // confusing subsequent error messages about cycles that then abort.)
598- cycle_delay_bug
598+ cycle_delayed_bug
599599 // We don't want recursive representability calls to be forced with
600600 // incremental compilation because, if a cycle occurs, we need the
601601 // entire cycle to be in memory for diagnostics. This means we can't
@@ -607,7 +607,7 @@ rustc_queries! {
607607 /// details, particularly on the modifiers.
608608 query check_representability_adt_ty( key: Ty <' tcx>) -> rustc_middle:: ty:: Representability {
609609 desc { "checking if `{}` is representable" , key }
610- cycle_delay_bug
610+ cycle_delayed_bug
611611 anon
612612 }
613613
@@ -1052,7 +1052,7 @@ rustc_queries! {
10521052 desc { "computing the variances of `{}`" , tcx. def_path_str( def_id) }
10531053 cache_on_disk_if { def_id. is_local( ) }
10541054 separate_provide_extern
1055- cycle_delay_bug
1055+ cycle_delayed_bug
10561056 }
10571057
10581058 /// Gets a map with the inferred outlives-predicates of every item in the local crate.
@@ -1185,7 +1185,7 @@ rustc_queries! {
11851185 desc { "computing function signature of `{}`" , tcx. def_path_str( key) }
11861186 cache_on_disk_if { key. is_local( ) }
11871187 separate_provide_extern
1188- cycle_delay_bug
1188+ cycle_delayed_bug
11891189 }
11901190
11911191 /// Performs lint checking for the module.
@@ -1777,7 +1777,7 @@ rustc_queries! {
17771777 depth_limit
17781778 desc { "computing layout of `{}`" , key. value }
17791779 // we emit our own error during query cycle handling
1780- cycle_delay_bug
1780+ cycle_delayed_bug
17811781 }
17821782
17831783 /// Compute a `FnAbi` suitable for indirect calls, i.e. to `fn` pointers.
0 commit comments