about summary refs log tree commit diff
diff options
context:
space:
mode:
authorklensy <klensy@users.noreply.github.com>2025-02-21 15:06:26 +0300
committerklensy <klensy@users.noreply.github.com>2025-02-21 15:06:26 +0300
commit918b5c391fb1d0aee0de2a189ead53c8b9daa0f6 (patch)
treeb490d720ccc8ca04849c1b0c0f1d40e1acbd1518
parenta18bd8acfc32dbfbbe150cd52eecf24e67fb69b6 (diff)
downloadrust-918b5c391fb1d0aee0de2a189ead53c8b9daa0f6.tar.gz
rust-918b5c391fb1d0aee0de2a189ead53c8b9daa0f6.zip
remove unused pred_rcache
-rw-r--r--compiler/rustc_middle/src/ty/context.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_middle/src/ty/context.rs b/compiler/rustc_middle/src/ty/context.rs
index 35893ad953d..f4272672bd3 100644
--- a/compiler/rustc_middle/src/ty/context.rs
+++ b/compiler/rustc_middle/src/ty/context.rs
@@ -1370,7 +1370,6 @@ pub struct GlobalCtxt<'tcx> {
 
     // Internal caches for metadata decoding. No need to track deps on this.
     pub ty_rcache: Lock<FxHashMap<ty::CReaderCacheKey, Ty<'tcx>>>,
-    pub pred_rcache: Lock<FxHashMap<ty::CReaderCacheKey, Predicate<'tcx>>>,
 
     /// Caches the results of trait selection. This cache is used
     /// for things that do not have to do with the parameters in scope.
@@ -1601,7 +1600,6 @@ impl<'tcx> TyCtxt<'tcx> {
             query_system,
             query_kinds,
             ty_rcache: Default::default(),
-            pred_rcache: Default::default(),
             selection_cache: Default::default(),
             evaluation_cache: Default::default(),
             new_solver_evaluation_cache: Default::default(),