We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3f416d commit 1551495Copy full SHA for 1551495
compiler/rustc_monomorphize/src/partitioning/mod.rs
@@ -365,14 +365,14 @@ where
365
let symbol_hash_start = symbol_name.rfind('h');
366
let symbol_hash = symbol_hash_start.map_or("<no hash>", |i| &symbol_name[i..]);
367
368
- let _ = writeln!(
+ let _ = with_no_trimmed_paths!(writeln!(
369
s,
370
" - {} [{:?}] [{}] estimated size {}",
371
mono_item,
372
linkage,
373
symbol_hash,
374
mono_item.size_estimate(tcx)
375
- );
+ ));
376
}
377
378
let _ = writeln!(s);
0 commit comments