File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -501,7 +501,10 @@ impl DepGraph {
501
501
debug ! ( "try_mark_green({:?}) --- trying to force \
502
502
dependency {:?}", dep_node, dep_dep_node) ;
503
503
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 ( ) ;
505
508
match dep_dep_node_color {
506
509
Some ( DepNodeColor :: Green ( node_index) ) => {
507
510
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) {
77
77
} ;
78
78
79
79
providers. is_exported_symbol = |tcx, id| {
80
- // FIXME(#42293) needs red/green to not break a bunch of incremental
81
- // tests
82
80
tcx. exported_symbol_ids ( id. krate ) . contains ( & id)
83
81
} ;
84
82
You can’t perform that action at this time.
0 commit comments