File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
compiler/rustc_interface/src Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -270,13 +270,12 @@ impl Linker {
270
270
271
271
sess. compile_status ( ) ?;
272
272
273
- let dep_graph = self . dep_graph ;
274
273
sess. time ( "serialize_work_products" , || {
275
- rustc_incremental:: save_work_product_index ( sess, & dep_graph, work_products)
274
+ rustc_incremental:: save_work_product_index ( sess, & self . dep_graph , work_products)
276
275
} ) ;
277
276
278
277
let prof = sess. prof . clone ( ) ;
279
- prof. generic_activity ( "drop_dep_graph" ) . run ( move || drop ( dep_graph) ) ;
278
+ prof. generic_activity ( "drop_dep_graph" ) . run ( move || drop ( self . dep_graph ) ) ;
280
279
281
280
// Now that we won't touch anything in the incremental compilation directory
282
281
// any more, we can finalize it (which involves renaming it)
You can’t perform that action at this time.
0 commit comments