about summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authorJubilee <46493976+workingjubilee@users.noreply.github.com>2024-03-11 09:29:31 -0700
committerGitHub <noreply@github.com>2024-03-11 09:29:31 -0700
commit88d387b26380e48384610d530aa275a573790797 (patch)
tree98e28ab8ee04001fd52f65766550daec31f824f1 /compiler/rustc_interface/src
parentd255c6a57c393db6221b1ff700daea478436f1cd (diff)
parentf368922cfa58d2ebc98b6153e62bcb65e27fcf67 (diff)
downloadrust-88d387b26380e48384610d530aa275a573790797.tar.gz
rust-88d387b26380e48384610d530aa275a573790797.zip
Rollup merge of #116791 - WaffleLapkin:unparallel-backends, r=oli-obk
Allow codegen backends to opt-out of parallel codegen

This makes it a bit easier to write cursed codegen backends.
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs
index 4f15d1c1d3a..c5376f224e3 100644
--- a/compiler/rustc_interface/src/tests.rs
+++ b/compiler/rustc_interface/src/tests.rs
@@ -685,7 +685,7 @@ fn test_unstable_options_tracking_hash() {
     untracked!(nll_facts, true);
     untracked!(no_analysis, true);
     untracked!(no_leak_check, true);
-    untracked!(no_parallel_llvm, true);
+    untracked!(no_parallel_backend, true);
     untracked!(parse_only, true);
     // `pre_link_arg` is omitted because it just forwards to `pre_link_args`.
     untracked!(pre_link_args, vec![String::from("abc"), String::from("def")]);