about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc/src
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2024-03-05 20:17:22 +0100
committerGuillaume Gomez <guillaume.gomez@huawei.com>2024-03-05 20:17:29 +0100
commit3aefb2e69e87fcc6133754ddb55ffbd935021090 (patch)
treef5ee68657e0556b13e4ac958bbe8f3d91965f3ce /compiler/rustc_codegen_gcc/src
parente378787a43354ae88473b919bd17dc33e3db375a (diff)
downloadrust-3aefb2e69e87fcc6133754ddb55ffbd935021090.tar.gz
rust-3aefb2e69e87fcc6133754ddb55ffbd935021090.zip
Fix cg_gcc build
Diffstat (limited to 'compiler/rustc_codegen_gcc/src')
-rw-r--r--compiler/rustc_codegen_gcc/src/type_.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/rustc_codegen_gcc/src/type_.rs b/compiler/rustc_codegen_gcc/src/type_.rs
index c8e6ae69bd9..68471b028be 100644
--- a/compiler/rustc_codegen_gcc/src/type_.rs
+++ b/compiler/rustc_codegen_gcc/src/type_.rs
@@ -136,10 +136,6 @@ impl<'gcc, 'tcx> BaseTypeMethods<'tcx> for CodegenCx<'gcc, 'tcx> {
         unimplemented!("f16_f128")
     }
 
-    fn type_f128(&self) -> Type<'gcc> {
-        unimplemented!("f16_f128")
-    }
-
     fn type_func(&self, params: &[Type<'gcc>], return_type: Type<'gcc>) -> Type<'gcc> {
         self.context.new_function_pointer_type(None, return_type, params, false)
     }