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 @@ -510,7 +510,10 @@ impl DepGraph {
510
510
debug ! ( "try_mark_green({:?}) --- trying to force \
511
511
dependency {:?}", dep_node, dep_dep_node) ;
512
512
if :: ty:: maps:: force_from_dep_node ( tcx, dep_dep_node) {
513
- let dep_dep_node_color = data. colors . borrow ( ) . get ( dep_dep_node) . cloned ( ) ;
513
+ let dep_dep_node_color = data. colors
514
+ . borrow ( )
515
+ . get ( dep_dep_node)
516
+ . cloned ( ) ;
514
517
match dep_dep_node_color {
515
518
Some ( DepNodeColor :: Green ( node_index) ) => {
516
519
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