about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-08-26 17:25:45 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-08-26 17:25:45 +0200
commita03a0f1d4421b77f0270686aa6e3a9d0602c48f8 (patch)
tree35a6c297a34819c70ec0ab145449794399d8a9c5 /compiler/rustc_codegen_gcc
parent17137135aeb281e3abf2c41740633aa3c4042e17 (diff)
downloadrust-a03a0f1d4421b77f0270686aa6e3a9d0602c48f8.tar.gz
rust-a03a0f1d4421b77f0270686aa6e3a9d0602c48f8.zip
Fix sync conflict
Diffstat (limited to 'compiler/rustc_codegen_gcc')
-rw-r--r--compiler/rustc_codegen_gcc/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/src/lib.rs b/compiler/rustc_codegen_gcc/src/lib.rs
index ff1708d6e95..2d7df79ba95 100644
--- a/compiler/rustc_codegen_gcc/src/lib.rs
+++ b/compiler/rustc_codegen_gcc/src/lib.rs
@@ -361,7 +361,7 @@ impl WriteBackendMethods for GccCodegenBackend {
         _exported_symbols_for_lto: &[String],
         each_linked_rlib_for_lto: &[PathBuf],
         modules: Vec<FatLtoInput<Self>>,
-    ) -> Result<ModuleCodegen<Self::Module>, FatalError> {
+    ) -> ModuleCodegen<Self::Module> {
         back::lto::run_fat(cgcx, each_linked_rlib_for_lto, modules)
     }