@@ -94,12 +94,14 @@ impl OngoingCodegen {
94
94
( "o" , & module_regular. object . as_ref ( ) . unwrap ( ) ) ,
95
95
( "asm.o" , & module_global_asm. object . as_ref ( ) . unwrap ( ) ) ,
96
96
] ,
97
+ & [ ] ,
97
98
)
98
99
} else {
99
100
rustc_incremental:: copy_cgu_workproduct_to_incr_comp_cache_dir (
100
101
sess,
101
102
& module_regular. name ,
102
103
& [ ( "o" , & module_regular. object . as_ref ( ) . unwrap ( ) ) ] ,
104
+ & [ ] ,
103
105
)
104
106
} ;
105
107
if let Some ( ( work_product_id, work_product) ) = work_product {
@@ -369,6 +371,7 @@ fn emit_cgu(
369
371
bytecode : None ,
370
372
assembly : None ,
371
373
llvm_ir : None ,
374
+ links_from_incr_cache : Vec :: new ( ) ,
372
375
} ) ,
373
376
existing_work_product : None ,
374
377
} )
@@ -414,6 +417,7 @@ fn emit_module(
414
417
bytecode : None ,
415
418
assembly : None ,
416
419
llvm_ir : None ,
420
+ links_from_incr_cache : Vec :: new ( ) ,
417
421
} )
418
422
}
419
423
@@ -464,6 +468,7 @@ fn reuse_workproduct_for_cgu(
464
468
bytecode : None ,
465
469
assembly : None ,
466
470
llvm_ir : None ,
471
+ links_from_incr_cache : Vec :: new ( ) ,
467
472
} ,
468
473
module_global_asm : has_global_asm. then ( || CompiledModule {
469
474
name : cgu. name ( ) . to_string ( ) ,
@@ -473,6 +478,7 @@ fn reuse_workproduct_for_cgu(
473
478
bytecode : None ,
474
479
assembly : None ,
475
480
llvm_ir : None ,
481
+ links_from_incr_cache : Vec :: new ( ) ,
476
482
} ) ,
477
483
existing_work_product : Some ( ( cgu. work_product_id ( ) , work_product) ) ,
478
484
} )
@@ -710,6 +716,7 @@ pub(crate) fn run_aot(
710
716
bytecode : None ,
711
717
assembly : None ,
712
718
llvm_ir : None ,
719
+ links_from_incr_cache : Vec :: new ( ) ,
713
720
} )
714
721
} else {
715
722
None
0 commit comments