about summary refs log tree commit diff
diff options
context:
space:
mode:
authormejrs <59372212+mejrs@users.noreply.github.com>2025-06-24 16:58:46 +0200
committermejrs <59372212+mejrs@users.noreply.github.com>2025-07-07 23:04:06 +0200
commit46836c352d86268ad88fb406337413539b48ca32 (patch)
treef63ce2282a51beb175047824cf5b89f3b17f152c
parent214311beb05883c5d07200d28cc926e2acfbaaad (diff)
downloadrust-46836c352d86268ad88fb406337413539b48ca32.tar.gz
rust-46836c352d86268ad88fb406337413539b48ca32.zip
Remove support for dynamic allocas
-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();