about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorBruno Dutra <brunocodutra@gmail.com>2018-07-28 17:07:40 +0200
committerBruno Dutra <brunocodutra@gmail.com>2018-09-03 20:02:35 +0200
commit7fa42beef8d385e5eccf7ad86dcf022dfca1c0ac (patch)
tree1d5a9dc59b79b0d8bdef26a018a589dafb965bac /src
parentee73f80dc963707df3b3da82976556d64cac5752 (diff)
downloadrust-7fa42beef8d385e5eccf7ad86dcf022dfca1c0ac.tar.gz
rust-7fa42beef8d385e5eccf7ad86dcf022dfca1c0ac.zip
Remove unused alloc_id_recursion_tracker
Diffstat (limited to 'src')
-rw-r--r--src/librustc/ich/hcx.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/librustc/ich/hcx.rs b/src/librustc/ich/hcx.rs
index 371f631737c..1acc58948f4 100644
--- a/src/librustc/ich/hcx.rs
+++ b/src/librustc/ich/hcx.rs
@@ -15,7 +15,6 @@ use hir::map::definitions::Definitions;
 use ich::{self, CachingSourceMapView, Fingerprint};
 use middle::cstore::CrateStore;
 use ty::{TyCtxt, fast_reject};
-use mir::interpret::AllocId;
 use session::Session;
 
 use std::cmp::Ord;
@@ -60,8 +59,6 @@ pub struct StableHashingContext<'a> {
     // CachingSourceMapView, so we initialize it lazily.
     raw_source_map: &'a SourceMap,
     caching_source_map: Option<CachingSourceMapView<'a>>,
-
-    pub(super) alloc_id_recursion_tracker: FxHashSet<AllocId>,
 }
 
 #[derive(PartialEq, Eq, Clone, Copy)]
@@ -105,7 +102,6 @@ impl<'a> StableHashingContext<'a> {
             hash_spans: hash_spans_initial,
             hash_bodies: true,
             node_id_hashing_mode: NodeIdHashingMode::HashDefPath,
-            alloc_id_recursion_tracker: Default::default(),
         }
     }