We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
specialization_graph_of
1 parent cbfb988 commit f285239Copy full SHA for f285239
src/librustc/query/mod.rs
@@ -647,7 +647,8 @@ rustc_queries! {
647
query trait_impls_of(key: DefId) -> &'tcx ty::trait_def::TraitImpls {
648
desc { |tcx| "trait impls of `{}`", tcx.def_path_str(key) }
649
}
650
- query specialization_graph_of(_: DefId) -> &'tcx specialization_graph::Graph {
+ query specialization_graph_of(key: DefId) -> &'tcx specialization_graph::Graph {
651
+ desc { |tcx| "building specialization graph of trait `{}`", tcx.def_path_str(key) }
652
cache_on_disk_if { true }
653
654
query is_object_safe(key: DefId) -> bool {
0 commit comments