File tree 1 file changed +3
-3
lines changed
compiler/rustc_query_system/src/dep_graph
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -333,7 +333,7 @@ impl<K: DepKind> DepGraph<K> {
333
333
eprintln ! ( "[task::new] {:?}" , key) ;
334
334
}
335
335
336
- data. current . intern_node (
336
+ data. current . intern_new_node (
337
337
& data. previous ,
338
338
key,
339
339
edges,
@@ -376,7 +376,7 @@ impl<K: DepKind> DepGraph<K> {
376
376
hash : data. current . anon_id_seed . combine ( hasher. finish ( ) ) . into ( ) ,
377
377
} ;
378
378
379
- let dep_node_index = data. current . intern_node (
379
+ let dep_node_index = data. current . intern_new_node (
380
380
& data. previous ,
381
381
target_dep_node,
382
382
task_deps. reads ,
@@ -1354,7 +1354,7 @@ impl<K: DepKind> CurrentDepGraph<K> {
1354
1354
}
1355
1355
}
1356
1356
1357
- fn intern_node (
1357
+ fn intern_new_node (
1358
1358
& self ,
1359
1359
prev_graph : & PreviousDepGraph < K > ,
1360
1360
dep_node : DepNode < K > ,
You can’t perform that action at this time.
0 commit comments