Skip to content

Commit e6bdda7

Browse files
authored
Fix fmt
1 parent 6fa69a0 commit e6bdda7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/rustc_codegen_ssa/src/back/linker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1700,7 +1700,7 @@ fn exported_symbols_for_non_proc_macro(tcx: TyCtxt<'_>, crate_type: CrateType) -
17001700
for_each_exported_symbols_include_dep(tcx, crate_type, |symbol, info, cnum| {
17011701
if info.level.is_below_threshold(export_threshold) {
17021702
symbols.push(symbol_export::exporting_symbol_name_for_instance_in_crate(
1703-
tcx, symbol, cnum
1703+
tcx, symbol, cnum,
17041704
));
17051705
}
17061706
});

compiler/rustc_codegen_ssa/src/back/symbol_export.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ pub fn exporting_symbol_name_for_instance_in_crate<'tcx>(
623623
// and exported symbol name need to match this.
624624
format!("__emutls_v.{undecorated}")
625625
} else {
626-
undecorated
626+
undecorated
627627
}
628628
}
629629

0 commit comments

Comments
 (0)