about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/lib.rs
diff options
context:
space:
mode:
authorLaurențiu Nicola <lnicola@users.noreply.github.com>2025-08-11 06:58:04 +0000
committerGitHub <noreply@github.com>2025-08-11 06:58:04 +0000
commit6bb9af0eeb944611c3c87adca77afe86eda193d0 (patch)
tree346a19d4687bd378070c21e87c4001aa6737c017 /compiler/rustc_codegen_llvm/src/lib.rs
parentbd46f7b6aefa7fcd1bb6d7e278bbc8d6b94cf3f4 (diff)
parent0585bdff8b6a6e239858f8153ab48f4053afe798 (diff)
downloadrust-6bb9af0eeb944611c3c87adca77afe86eda193d0.tar.gz
rust-6bb9af0eeb944611c3c87adca77afe86eda193d0.zip
Merge pull request #20424 from rust-lang/rustc-pull
Rustc pull update
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/lib.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/lib.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/compiler/rustc_codegen_llvm/src/lib.rs b/compiler/rustc_codegen_llvm/src/lib.rs
index 8b1913cfa75..ca84b6de8b1 100644
--- a/compiler/rustc_codegen_llvm/src/lib.rs
+++ b/compiler/rustc_codegen_llvm/src/lib.rs
@@ -168,13 +168,6 @@ impl WriteBackendMethods for LlvmCodegenBackend {
         let stats = llvm::build_string(|s| unsafe { llvm::LLVMRustPrintStatistics(s) }).unwrap();
         print!("{stats}");
     }
-    fn run_link(
-        cgcx: &CodegenContext<Self>,
-        dcx: DiagCtxtHandle<'_>,
-        modules: Vec<ModuleCodegen<Self::Module>>,
-    ) -> Result<ModuleCodegen<Self::Module>, FatalError> {
-        back::write::link(cgcx, dcx, modules)
-    }
     fn run_and_optimize_fat_lto(
         cgcx: &CodegenContext<Self>,
         exported_symbols_for_lto: &[String],