diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2022-10-01 17:34:21 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2022-10-02 13:42:02 +0000 |
| commit | 0fe84bc38b19bacb7cb2a5765fb4ffa2106fe9e2 (patch) | |
| tree | 1e0900c46cc18c92f59ae4e7d91457113c6ce7da /compiler/rustc_codegen_gcc/src | |
| parent | 62cf644c64b6e9e2f18c6d846a25a5c98c252430 (diff) | |
| download | rust-0fe84bc38b19bacb7cb2a5765fb4ffa2106fe9e2.tar.gz rust-0fe84bc38b19bacb7cb2a5765fb4ffa2106fe9e2.zip | |
Remove dynamic_alloca from BuilderMethods
Diffstat (limited to 'compiler/rustc_codegen_gcc/src')
| -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 e6fed9d35ca..15471ecdb03 100644 --- a/compiler/rustc_codegen_gcc/src/builder.rs +++ b/compiler/rustc_codegen_gcc/src/builder.rs @@ -655,10 +655,6 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> { self.current_func().new_local(None, aligned_type, &format!("stack_var_{}", self.stack_var_count.get())).get_address(None) } - fn dynamic_alloca(&mut self, _ty: Type<'gcc>, _align: Align) -> RValue<'gcc> { - unimplemented!(); - } - fn array_alloca(&mut self, _ty: Type<'gcc>, _len: RValue<'gcc>, _align: Align) -> RValue<'gcc> { unimplemented!(); } |
