summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authorAndrew Zhogin <andrew.zhogin@gmail.com>2024-09-16 22:14:35 +0700
committerAndrew Zhogin <andrew.zhogin@gmail.com>2024-10-18 00:29:31 +0700
commitb3ae64d24fc323365bd09fe6ac8b7438f5713078 (patch)
treef45202a805c0864b5b0ac4a635043d3beb3820cb /compiler/rustc_interface/src
parenta0c2aba29aa9ea50a7c45c3391dd446f856bef7b (diff)
downloadrust-b3ae64d24fc323365bd09fe6ac8b7438f5713078.tar.gz
rust-b3ae64d24fc323365bd09fe6ac8b7438f5713078.zip
rust_for_linux: -Zregparm=<N> commandline flag for X86 (#116972)
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/tests.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs
index 3189620e969..d3762e739db 100644
--- a/compiler/rustc_interface/src/tests.rs
+++ b/compiler/rustc_interface/src/tests.rs
@@ -836,6 +836,7 @@ fn test_unstable_options_tracking_hash() {
     tracked!(profile_emit, Some(PathBuf::from("abc")));
     tracked!(profile_sample_use, Some(PathBuf::from("abc")));
     tracked!(profiler_runtime, "abc".to_string());
+    tracked!(regparm, Some(3));
     tracked!(relax_elf_relocations, Some(true));
     tracked!(remap_cwd_prefix, Some(PathBuf::from("abc")));
     tracked!(sanitizer, SanitizerSet::ADDRESS);