diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-12-12 20:16:58 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2025-04-14 09:38:04 +0000 |
| commit | 421f22e8bf404d7b67395a66e60300e99452549a (patch) | |
| tree | 17684324fad4b75c23ff320cf7c730ed948f63fd /compiler/rustc_codegen_gcc/src/base.rs | |
| parent | 94e95f389c8212b5b43c327c4643cfd5dd5c60a3 (diff) | |
| download | rust-421f22e8bf404d7b67395a66e60300e99452549a.tar.gz rust-421f22e8bf404d7b67395a66e60300e99452549a.zip | |
Pass &mut self to codegen_global_asm
Diffstat (limited to 'compiler/rustc_codegen_gcc/src/base.rs')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/base.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_gcc/src/base.rs b/compiler/rustc_codegen_gcc/src/base.rs index 292f0514070..a9d7808c833 100644 --- a/compiler/rustc_codegen_gcc/src/base.rs +++ b/compiler/rustc_codegen_gcc/src/base.rs @@ -206,7 +206,7 @@ pub fn compile_codegen_unit( let f128_type_supported = target_info.supports_target_dependent_type(CType::Float128); let u128_type_supported = target_info.supports_target_dependent_type(CType::UInt128t); // TODO: improve this to avoid passing that many arguments. - let cx = CodegenCx::new( + let mut cx = CodegenCx::new( &context, cgu, tcx, @@ -224,7 +224,7 @@ pub fn compile_codegen_unit( // ... and now that we have everything pre-defined, fill out those definitions. for &(mono_item, item_data) in &mono_items { - mono_item.define::<Builder<'_, '_, '_>>(&cx, item_data); + mono_item.define::<Builder<'_, '_, '_>>(&mut cx, item_data); } // If this codegen unit contains the main function, also create the |
