about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/back
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2022-09-16 16:37:17 -0700
committerJosh Stone <jistone@redhat.com>2022-09-18 13:26:03 -0700
commit38e0e8f7bb5060d6a656d0d17dd119f9e3482e67 (patch)
treef3656bda20aad7ac5321eae2be0b775524adeb96 /compiler/rustc_codegen_ssa/src/back
parent2860f77a0dd30d7edbb374fff49b39b096e298fd (diff)
downloadrust-38e0e8f7bb5060d6a656d0d17dd119f9e3482e67.tar.gz
rust-38e0e8f7bb5060d6a656d0d17dd119f9e3482e67.zip
Remove -Znew-llvm-pass-manager
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/back')
-rw-r--r--compiler/rustc_codegen_ssa/src/back/write.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/write.rs b/compiler/rustc_codegen_ssa/src/back/write.rs
index 68f3b19b715..680b9b642d9 100644
--- a/compiler/rustc_codegen_ssa/src/back/write.rs
+++ b/compiler/rustc_codegen_ssa/src/back/write.rs
@@ -113,7 +113,6 @@ pub struct ModuleConfig {
     pub vectorize_slp: bool,
     pub merge_functions: bool,
     pub inline_threshold: Option<u32>,
-    pub new_llvm_pass_manager: Option<bool>,
     pub emit_lifetime_markers: bool,
     pub llvm_plugins: Vec<String>,
 }
@@ -265,7 +264,6 @@ impl ModuleConfig {
             },
 
             inline_threshold: sess.opts.cg.inline_threshold,
-            new_llvm_pass_manager: sess.opts.unstable_opts.new_llvm_pass_manager,
             emit_lifetime_markers: sess.emit_lifetime_markers(),
             llvm_plugins: if_regular!(sess.opts.unstable_opts.llvm_plugins.clone(), vec![]),
         }