diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-12-06 09:27:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-06 09:27:38 +0100 |
| commit | 820ddaf67a4d1e3161249dd0dd88cf777ef47891 (patch) | |
| tree | 09c0ceb38b913620e801cf9434454db7f80203d5 /compiler/rustc_interface/src/tests.rs | |
| parent | acf48426b64d24f372d534f634072de1f4c7e588 (diff) | |
| parent | 9aab517d6310223ac5a89c640723a64b695d49d2 (diff) | |
| download | rust-820ddaf67a4d1e3161249dd0dd88cf777ef47891.tar.gz rust-820ddaf67a4d1e3161249dd0dd88cf777ef47891.zip | |
Rollup merge of #130777 - azhogin:azhogin/reg-struct-return, r=workingjubilee
rust_for_linux: -Zreg-struct-return commandline flag for X86 (#116973) Command line flag `-Zreg-struct-return` for X86 (32-bit) for rust-for-linux. This flag enables the same behavior as the `abi_return_struct_as_int` target spec key. - Tracking issue: https://github.com/rust-lang/rust/issues/116973
Diffstat (limited to 'compiler/rustc_interface/src/tests.rs')
| -rw-r--r-- | compiler/rustc_interface/src/tests.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs index 3c4d9c2e928..e76e9ca9f85 100644 --- a/compiler/rustc_interface/src/tests.rs +++ b/compiler/rustc_interface/src/tests.rs @@ -832,6 +832,7 @@ fn test_unstable_options_tracking_hash() { tracked!(precise_enum_drop_elaboration, false); tracked!(profile_sample_use, Some(PathBuf::from("abc"))); tracked!(profiler_runtime, "abc".to_string()); + tracked!(reg_struct_return, true); tracked!(regparm, Some(3)); tracked!(relax_elf_relocations, Some(true)); tracked!(remap_cwd_prefix, Some(PathBuf::from("abc"))); |
