summary refs log tree commit diff
path: root/compiler/rustc_hir_analysis/src/lib.rs
diff options
context:
space:
mode:
authorBoxy <supbscripter@gmail.com>2024-06-30 19:31:15 +0100
committerBoxy <supbscripter@gmail.com>2024-06-30 19:31:21 +0100
commit552794410a9237a26aded88990dbe8be26c72dfc (patch)
tree30aabb3c2d98f62487784cfd14b39f108f5eca10 /compiler/rustc_hir_analysis/src/lib.rs
parent6c3485512fc95fa9c43cb831607bfec9d2153b6e (diff)
downloadrust-552794410a9237a26aded88990dbe8be26c72dfc.tar.gz
rust-552794410a9237a26aded88990dbe8be26c72dfc.zip
add `rustc_dump_def_parents` attribute
Diffstat (limited to 'compiler/rustc_hir_analysis/src/lib.rs')
-rw-r--r--compiler/rustc_hir_analysis/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_hir_analysis/src/lib.rs b/compiler/rustc_hir_analysis/src/lib.rs
index 0428abcdf24..dcf60edafe2 100644
--- a/compiler/rustc_hir_analysis/src/lib.rs
+++ b/compiler/rustc_hir_analysis/src/lib.rs
@@ -169,6 +169,7 @@ pub fn check_crate(tcx: TyCtxt<'_>) {
         tcx.sess.time("variance_dumping", || variance::dump::variances(tcx));
         collect::dump::opaque_hidden_types(tcx);
         collect::dump::predicates_and_item_bounds(tcx);
+        collect::dump::def_parents(tcx);
     }
 
     // Make sure we evaluate all static and (non-associated) const items, even if unused.