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 @@ -267,13 +267,12 @@ impl Linker {
267
267
268
268
sess. compile_status ( ) ?;
269
269
270
- let dep_graph = self . dep_graph ;
271
270
sess. time ( "serialize_work_products" , || {
272
- rustc_incremental:: save_work_product_index ( sess, & dep_graph, work_products)
271
+ rustc_incremental:: save_work_product_index ( sess, & self . dep_graph , work_products)
273
272
} ) ;
274
273
275
274
let prof = sess. prof . clone ( ) ;
276
- prof. generic_activity ( "drop_dep_graph" ) . run ( move || drop ( dep_graph) ) ;
275
+ prof. generic_activity ( "drop_dep_graph" ) . run ( move || drop ( self . dep_graph ) ) ;
277
276
278
277
// Now that we won't touch anything in the incremental compilation directory
279
278
// any more, we can finalize it (which involves renaming it)
You can’t perform that action at this time.
0 commit comments