about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc/src/base.rs
diff options
context:
space:
mode:
authorAntoni Boucher <bouanto@zoho.com>2023-10-09 16:03:05 -0400
committerAntoni Boucher <bouanto@zoho.com>2023-10-09 16:03:05 -0400
commit2cbac9c636eda3c260d4eb5b533db2f3252b4f65 (patch)
treeb4ce17316e8862e7dac5f7e692aba114f3a805e8 /compiler/rustc_codegen_gcc/src/base.rs
parent30290c8b411a837b2e19293391956f5f779608ab (diff)
downloadrust-2cbac9c636eda3c260d4eb5b533db2f3252b4f65.tar.gz
rust-2cbac9c636eda3c260d4eb5b533db2f3252b4f65.zip
Fix checks
Diffstat (limited to 'compiler/rustc_codegen_gcc/src/base.rs')
-rw-r--r--compiler/rustc_codegen_gcc/src/base.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/src/base.rs b/compiler/rustc_codegen_gcc/src/base.rs
index 61da38f4b0d..b081e9ff2fd 100644
--- a/compiler/rustc_codegen_gcc/src/base.rs
+++ b/compiler/rustc_codegen_gcc/src/base.rs
@@ -120,7 +120,7 @@ pub fn compile_codegen_unit(tcx: TyCtxt<'_>, cgu_name: Symbol, target_info: Lock
         // NOTE: Rust relies on LLVM doing wrapping on overflow.
         context.add_command_line_option("-fwrapv");
 
-        if tcx.sess.opts.cg.relocation_model == Some(rustc_target::spec::RelocModel::Static) {
+        if tcx.sess.relocation_model() == rustc_target::spec::RelocModel::Static {
             context.add_command_line_option("-mcmodel=kernel");
             context.add_command_line_option("-fno-pie");
         }