Skip to content

Commit f387cff

Browse files
committed
Access stable_crate_id directly.
1 parent a246751 commit f387cff

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

compiler/rustc_middle/src/ty/context.rs

+6
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ use rustc_serialize::opaque::{FileEncodeResult, FileEncoder};
5353
use rustc_session::config::{BorrowckMode, CrateType, OutputFilenames};
5454
use rustc_session::lint::{Level, Lint};
5555
use rustc_session::Session;
56+
use rustc_span::def_id::StableCrateId;
5657
use rustc_span::source_map::MultiSpan;
5758
use rustc_span::symbol::{kw, sym, Ident, Symbol};
5859
use rustc_span::{Span, DUMMY_SP};
@@ -1264,6 +1265,11 @@ impl<'tcx> TyCtxt<'tcx> {
12641265
}
12651266
}
12661267

1268+
#[inline]
1269+
pub fn stable_crate_id(self, cnum: CrateNum) -> StableCrateId {
1270+
self.def_path_hash(cnum.as_def_id()).stable_crate_id()
1271+
}
1272+
12671273
pub fn def_path_debug_str(self, def_id: DefId) -> String {
12681274
// We are explicitly not going through queries here in order to get
12691275
// crate name and disambiguator since this code is called from debug!()

compiler/rustc_middle/src/ty/query/on_disk_cache.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1022,8 +1022,7 @@ where
10221022
E: 'a + OpaqueEncoder,
10231023
{
10241024
fn encode(&self, s: &mut CacheEncoder<'a, 'tcx, E>) -> Result<(), E::Error> {
1025-
let def_path_hash = s.tcx.def_path_hash(self.as_def_id());
1026-
def_path_hash.stable_crate_id().encode(s)
1025+
s.tcx.stable_crate_id(*self).encode(s)
10271026
}
10281027
}
10291028

0 commit comments

Comments
 (0)