about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-07-11 05:27:32 +0000
committerbors <bors@rust-lang.org>2025-07-11 05:27:32 +0000
commit855e0fe46e68d94e9f6147531b75ac2d488c548e (patch)
treee7d73ebfdb909118cf6e79acac8a64a6f414f54b /compiler/rustc_codegen_gcc
parentcdac44e608c3df9a241e0a1b53b3f62af250dbf1 (diff)
parent25eb3829e5661ab85067188ca9e6586c29aed6e9 (diff)
downloadrust-855e0fe46e68d94e9f6147531b75ac2d488c548e.tar.gz
rust-855e0fe46e68d94e9f6147531b75ac2d488c548e.zip
Auto merge of #142911 - mejrs:unsized, r=compiler-errors
Remove support for dynamic allocas

Followup to rust-lang/rust#141811
Diffstat (limited to 'compiler/rustc_codegen_gcc')
-rw-r--r--compiler/rustc_codegen_gcc/src/builder.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/rustc_codegen_gcc/src/builder.rs b/compiler/rustc_codegen_gcc/src/builder.rs
index b1785af444a..28d1ec7d895 100644
--- a/compiler/rustc_codegen_gcc/src/builder.rs
+++ b/compiler/rustc_codegen_gcc/src/builder.rs
@@ -926,10 +926,6 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {
             .get_address(self.location)
     }
 
-    fn dynamic_alloca(&mut self, _len: RValue<'gcc>, _align: Align) -> RValue<'gcc> {
-        unimplemented!();
-    }
-
     fn load(&mut self, pointee_ty: Type<'gcc>, ptr: RValue<'gcc>, align: Align) -> RValue<'gcc> {
         let block = self.llbb();
         let function = block.get_function();