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 @@ -352,7 +352,7 @@ pub(in crate::rmeta) fn provide(providers: &mut Providers) {
352352 visible_parent_map. entry ( child) . or_insert ( parent) ;
353353 }
354354
355- visible_parent_map
355+ Lrc :: new ( visible_parent_map)
356356 } ,
357357
358358 dependency_formats : |tcx, ( ) | Lrc :: new ( crate :: dependency_format:: calculate ( tcx) ) ,
Original file line number Diff line number Diff line change @@ -1569,8 +1569,7 @@ rustc_queries! {
15691569 desc { "calculating the missing lang items in a crate" }
15701570 separate_provide_extern
15711571 }
1572- query visible_parent_map( _: ( ) ) -> DefIdMap <DefId > {
1573- storage( ArenaCacheSelector <' tcx>)
1572+ query visible_parent_map( _: ( ) ) -> Lrc <DefIdMap <DefId >> {
15741573 desc { "calculating the visible parent map" }
15751574 }
15761575 query trimmed_def_paths( _: ( ) ) -> FxHashMap <DefId , Symbol > {
You can’t perform that action at this time.
0 commit comments