Implement the query in cstore_impl.
This commit is contained in:
parent
ed9ee25108
commit
cbdfbdd40b
3 changed files with 1 additions and 8 deletions
|
@ -5,7 +5,6 @@
|
|||
use crate::ty::TyCtxt;
|
||||
|
||||
use rustc_ast as ast;
|
||||
use rustc_ast::expand::allocator::AllocatorKind;
|
||||
use rustc_data_structures::svh::Svh;
|
||||
use rustc_data_structures::sync::{self, MetadataRef};
|
||||
use rustc_hir::def::DefKind;
|
||||
|
@ -215,7 +214,6 @@ pub trait CrateStore {
|
|||
|
||||
// utility functions
|
||||
fn encode_metadata(&self, tcx: TyCtxt<'_>) -> EncodedMetadata;
|
||||
fn allocator_kind(&self) -> Option<AllocatorKind>;
|
||||
}
|
||||
|
||||
pub type CrateStoreDyn = dyn CrateStore + sync::Sync;
|
||||
|
|
|
@ -2834,5 +2834,4 @@ pub fn provide(providers: &mut ty::query::Providers) {
|
|||
// We want to check if the panic handler was defined in this crate
|
||||
tcx.lang_items().panic_impl().map_or(false, |did| did.is_local())
|
||||
};
|
||||
providers.allocator_kind = |tcx, ()| tcx.cstore.allocator_kind();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue