Skip to content

Commit bf36338

Browse files
Accept tidy changes
1 parent f81ebfb commit bf36338

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

compiler/rustc_codegen_ssa/src/back/symbol_export.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,9 @@ pub(crate) fn linking_symbol_name_for_instance_in_crate<'tcx>(
577577
}
578578

579579
let prefix = match &target.arch[..] {
580-
"x86" | "x86_64" if target.is_like_msvc && undecorated.starts_with("?") => return undecorated,
580+
"x86" | "x86_64" if target.is_like_msvc && undecorated.starts_with("?") => {
581+
return undecorated
582+
}
581583
"x86" => Some('_'),
582584
"x86_64" => None,
583585
"arm64ec" => Some('#'),

0 commit comments

Comments
 (0)