diff options
| author | Jubilee Young <workingjubilee@gmail.com> | 2025-02-10 11:19:02 -0800 | 
|---|---|---|
| committer | Jubilee Young <workingjubilee@gmail.com> | 2025-02-10 11:19:02 -0800 | 
| commit | fd58652a7de3c04ca957dd8fdc580c16ad17a8d3 (patch) | |
| tree | c173bd225945deea60832480332cdcdfb760f952 /compiler/rustc_codegen_gcc | |
| parent | 17716be86e36720885a9918a1e08da7a5669ceca (diff) | |
| download | rust-fd58652a7de3c04ca957dd8fdc580c16ad17a8d3.tar.gz rust-fd58652a7de3c04ca957dd8fdc580c16ad17a8d3.zip | |
cg_gcc: stop caring about compiling for unknown targets
Diffstat (limited to 'compiler/rustc_codegen_gcc')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/int.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler/rustc_codegen_gcc/src/int.rs b/compiler/rustc_codegen_gcc/src/int.rs index 4a1db8d662a..f3552d9b12f 100644 --- a/compiler/rustc_codegen_gcc/src/int.rs +++ b/compiler/rustc_codegen_gcc/src/int.rs @@ -400,7 +400,7 @@ impl<'a, 'gcc, 'tcx> Builder<'a, 'gcc, 'tcx> { conv: Conv::C, can_unwind: false, }; - fn_abi.adjust_for_foreign_abi(self.cx, ExternAbi::C { unwind: false }).unwrap(); + fn_abi.adjust_for_foreign_abi(self.cx, ExternAbi::C { unwind: false }); let ret_indirect = matches!(fn_abi.ret.mode, PassMode::Indirect { .. }); | 
