Skip to content

Commit 8392e47

Browse files
committed
Address review comments
1 parent 57870ea commit 8392e47

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Diff for: src/librustc_target/spec/msvc_base.rs

-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ pub fn opts() -> TargetOptions {
2727
link_env: vec![("VSLANG".to_string(), "1033".to_string())],
2828
lld_flavor: LldFlavor::Link,
2929
pre_link_args,
30-
// UEFI mirrors the calling-conventions used on windows. In case of x86-64 and i686 this
31-
// means small structs will be returned as int. This shouldn't matter much, since the
32-
// restrictions placed by the UEFI specifications forbid any ABI to return structures.
3330
abi_return_struct_as_int: true,
3431
emit_debug_gdb_scripts: false,
3532

Diff for: src/librustc_target/spec/windows_uwp_gnu_base.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub fn opts() -> TargetOptions {
1616
],
1717
);
1818

19-
// FIXME: Should UWP target be updated for the exception machinery changes from #67502?
19+
// FIXME: This should be updated for the exception machinery changes from #67502.
2020
let mut late_link_args = LinkArgs::new();
2121
let late_link_args_dynamic = LinkArgs::new();
2222
let late_link_args_static = LinkArgs::new();

0 commit comments

Comments
 (0)