diff options
| author | mejrs <59372212+mejrs@users.noreply.github.com> | 2025-06-24 16:58:46 +0200 |
|---|---|---|
| committer | mejrs <59372212+mejrs@users.noreply.github.com> | 2025-07-07 23:04:06 +0200 |
| commit | 49421d1fa382fba84792e5d5dd7721c1c3e0e46e (patch) | |
| tree | c8fa27e05fc212e025b5fdc739b68248918a2ada /compiler/rustc_codegen_gcc | |
| parent | 25cf7d13c960a3ac47d1424ca354077efb6946ff (diff) | |
| download | rust-49421d1fa382fba84792e5d5dd7721c1c3e0e46e.tar.gz rust-49421d1fa382fba84792e5d5dd7721c1c3e0e46e.zip | |
Remove support for dynamic allocas
Diffstat (limited to 'compiler/rustc_codegen_gcc')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/builder.rs | 4 |
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(); |
