about summary refs log tree commit diff
path: root/compiler/rustc_session/src
diff options
context:
space:
mode:
authorMaybe Waffle <waffle.lapkin@gmail.com>2024-02-15 00:14:44 +0000
committerMaybe Waffle <waffle.lapkin@gmail.com>2024-02-15 00:14:59 +0000
commit9a77ec98b801e0fbd2b249d4f8edbb081c3d1e85 (patch)
treed341d932f518f83b421521846595dda60644888f /compiler/rustc_session/src
parentee9c7c940c07d8b67c9a6b2ec930db70dcd23a46 (diff)
downloadrust-9a77ec98b801e0fbd2b249d4f8edbb081c3d1e85.tar.gz
rust-9a77ec98b801e0fbd2b249d4f8edbb081c3d1e85.zip
Rename `-Zno_parallel_llvm` -> `-Zno_parallel_backend`
Diffstat (limited to 'compiler/rustc_session/src')
-rw-r--r--compiler/rustc_session/src/options.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs
index ea93ac5841f..923757eea82 100644
--- a/compiler/rustc_session/src/options.rs
+++ b/compiler/rustc_session/src/options.rs
@@ -1753,7 +1753,7 @@ options! {
         "disable the 'leak check' for subtyping; unsound, but useful for tests"),
     no_link: bool = (false, parse_no_flag, [TRACKED],
         "compile without linking"),
-    no_parallel_llvm: bool = (false, parse_no_flag, [UNTRACKED],
+    no_parallel_backend: bool = (false, parse_no_flag, [UNTRACKED],
         "run LLVM in non-parallel mode (while keeping codegen-units and ThinLTO)"),
     no_profiler_runtime: bool = (false, parse_no_flag, [TRACKED],
         "prevent automatic injection of the profiler_builtins crate"),