diff options
| author | bors <bors@rust-lang.org> | 2025-07-11 05:27:32 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-07-11 05:27:32 +0000 |
| commit | 48117e83f82aa167e43a109f8fa0af58450f330c (patch) | |
| tree | aec3df64c9cd58a7625e15140ec8a41c8ae360a1 | |
| parent | 3d5b1774db136b03a80279f2829e58863056ff3a (diff) | |
| parent | 46836c352d86268ad88fb406337413539b48ca32 (diff) | |
| download | rust-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.rs | 4 |
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(); |
