diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-08-26 17:25:45 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-08-26 17:25:45 +0200 |
| commit | a03a0f1d4421b77f0270686aa6e3a9d0602c48f8 (patch) | |
| tree | 35a6c297a34819c70ec0ab145449794399d8a9c5 /compiler/rustc_codegen_gcc | |
| parent | 17137135aeb281e3abf2c41740633aa3c4042e17 (diff) | |
| download | rust-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.rs | 2 |
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) } |
