Skip to content

Commit 7327768

Browse files
committed
rustc_metadata: rip out unused incremental infrastructure.
1 parent c990907 commit 7327768

File tree

6 files changed

+125
-623
lines changed

6 files changed

+125
-623
lines changed

src/librustc_metadata/decoder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ impl<'a, 'tcx> CrateMetadata {
475475

476476
fn maybe_entry(&self, item_id: DefIndex) -> Option<Lazy<Entry<'tcx>>> {
477477
assert!(!self.is_proc_macro(item_id));
478-
self.root.index.lookup(self.blob.raw_bytes(), item_id)
478+
self.root.entries_index.lookup(self.blob.raw_bytes(), item_id)
479479
}
480480

481481
fn entry(&self, item_id: DefIndex) -> Entry<'tcx> {

0 commit comments

Comments
 (0)