File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
compiler/rustc_target/src/spec Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2403,9 +2403,9 @@ impl Target {
2403
2403
match abi {
2404
2404
Abi :: C { .. } => self . default_adjusted_cabi . unwrap_or ( abi) ,
2405
2405
2406
- // On Windows, `extern "system"` behaves like msvc's `__stdcall`
2407
- // `__stdcall` only applies on x86 and on non-variadic functions
2408
- // see https://learn.microsoft.com/en-us/cpp/cpp/stdcall?view=msvc-170
2406
+ // On Windows, `extern "system"` behaves like msvc's `__stdcall`.
2407
+ // `__stdcall` only applies on x86 and on non-variadic functions:
2408
+ // https://learn.microsoft.com/en-us/cpp/cpp/stdcall?view=msvc-170
2409
2409
Abi :: System { unwind } if self . is_like_windows && self . arch == "x86" && !c_variadic => {
2410
2410
Abi :: Stdcall { unwind }
2411
2411
}
You can’t perform that action at this time.
0 commit comments