File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
rustc_metadata/src/rmeta/decoder Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -360,7 +360,7 @@ pub fn provide(providers: &mut Providers) {
360360 visible_parent_map. entry ( child) . or_insert ( parent) ;
361361 }
362362
363- visible_parent_map
363+ Lrc :: new ( visible_parent_map)
364364 } ,
365365
366366 dependency_formats : |tcx, ( ) | Lrc :: new ( crate :: dependency_format:: calculate ( tcx) ) ,
Original file line number Diff line number Diff line change @@ -1552,8 +1552,7 @@ rustc_queries! {
15521552 desc { "calculating the missing lang items in a crate" }
15531553 separate_provide_extern
15541554 }
1555- query visible_parent_map( _: ( ) ) -> DefIdMap <DefId > {
1556- storage( ArenaCacheSelector <' tcx>)
1555+ query visible_parent_map( _: ( ) ) -> Lrc <DefIdMap <DefId >> {
15571556 desc { "calculating the visible parent map" }
15581557 }
15591558 query trimmed_def_paths( _: ( ) ) -> FxHashMap <DefId , Symbol > {
You can’t perform that action at this time.
0 commit comments