We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af22801 commit b6a7b5aCopy full SHA for b6a7b5a
compiler/rustc_codegen_llvm/src/back/lto.rs
@@ -313,7 +313,9 @@ fn fat_lto(
313
for (bc_decoded, name) in serialized_modules {
314
let _timer = cgcx
315
.prof
316
- .generic_activity_with_arg("LLVM_fat_lto_link_module", format!("{:?}", name));
+ .generic_activity_with_arg_recorder("LLVM_fat_lto_link_module", |recorder| {
317
+ recorder.record_arg(format!("{:?}", name))
318
+ });
319
info!("linking {:?}", name);
320
let data = bc_decoded.data();
321
linker.add(data).map_err(|()| {
0 commit comments