File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -501,7 +501,10 @@ impl DepGraph {
501501 debug ! ( "try_mark_green({:?}) --- trying to force \
502502 dependency {:?}", dep_node, dep_dep_node) ;
503503 if :: ty:: maps:: force_from_dep_node ( tcx, dep_dep_node) {
504- let dep_dep_node_color = data. colors . borrow ( ) . get ( dep_dep_node) . cloned ( ) ;
504+ let dep_dep_node_color = data. colors
505+ . borrow ( )
506+ . get ( dep_dep_node)
507+ . cloned ( ) ;
505508 match dep_dep_node_color {
506509 Some ( DepNodeColor :: Green ( node_index) ) => {
507510 debug ! ( "try_mark_green({:?}) --- managed to \
Original file line number Diff line number Diff line change @@ -77,8 +77,6 @@ pub fn provide_local(providers: &mut Providers) {
7777 } ;
7878
7979 providers. is_exported_symbol = |tcx, id| {
80- // FIXME(#42293) needs red/green to not break a bunch of incremental
81- // tests
8280 tcx. exported_symbol_ids ( id. krate ) . contains ( & id)
8381 } ;
8482
You can’t perform that action at this time.
0 commit comments