diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2025-02-24 11:31:43 +0000 |
|---|---|---|
| committer | Oli Scherer <github333195615777966@oli-obk.de> | 2025-02-24 15:11:29 +0000 |
| commit | 840e31b29f93a5e0569d05c8879468877a9991d4 (patch) | |
| tree | 300573754f101972abe7a4fe77e38cd0db1e9de4 /compiler/rustc_codegen_gcc | |
| parent | 75356b74370d21045099cb2a1ad81dc7a3c2579f (diff) | |
| download | rust-840e31b29f93a5e0569d05c8879468877a9991d4.tar.gz rust-840e31b29f93a5e0569d05c8879468877a9991d4.zip | |
Generalize BaseTypeCodegenMethods
Diffstat (limited to 'compiler/rustc_codegen_gcc')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/type_.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/src/type_.rs b/compiler/rustc_codegen_gcc/src/type_.rs index cb08723431a..4e0a250b550 100644 --- a/compiler/rustc_codegen_gcc/src/type_.rs +++ b/compiler/rustc_codegen_gcc/src/type_.rs @@ -123,7 +123,7 @@ impl<'gcc, 'tcx> CodegenCx<'gcc, 'tcx> { } } -impl<'gcc, 'tcx> BaseTypeCodegenMethods<'tcx> for CodegenCx<'gcc, 'tcx> { +impl<'gcc, 'tcx> BaseTypeCodegenMethods for CodegenCx<'gcc, 'tcx> { fn type_i8(&self) -> Type<'gcc> { self.i8_type } |
