about summary refs log tree commit diff
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
commit48117e83f82aa167e43a109f8fa0af58450f330c (patch)
treeaec3df64c9cd58a7625e15140ec8a41c8ae360a1
parent3d5b1774db136b03a80279f2829e58863056ff3a (diff)
parent46836c352d86268ad88fb406337413539b48ca32 (diff)
downloadrust-48117e83f82aa167e43a109f8fa0af58450f330c.tar.gz
rust-48117e83f82aa167e43a109f8fa0af58450f330c.zip
Auto merge of #142911 - mejrs:unsized, r=compiler-errors
Remove support for dynamic allocas

Followup to rust-lang/rust#141811
-rw-r--r--src/builder.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/builder.rs b/src/builder.rs
index b1785af444a..28d1ec7d895 100644
--- a/src/builder.rs
+++ b/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();