about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
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
commit49421d1fa382fba84792e5d5dd7721c1c3e0e46e (patch)
treec8fa27e05fc212e025b5fdc739b68248918a2ada /compiler/rustc_codegen_llvm/src/llvm/ffi.rs
parent25cf7d13c960a3ac47d1424ca354077efb6946ff (diff)
downloadrust-49421d1fa382fba84792e5d5dd7721c1c3e0e46e.tar.gz
rust-49421d1fa382fba84792e5d5dd7721c1c3e0e46e.zip
Remove support for dynamic allocas
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/llvm/ffi.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/llvm/ffi.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/compiler/rustc_codegen_llvm/src/llvm/ffi.rs b/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
index 91ada856d59..00a6ec7dfba 100644
--- a/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
+++ b/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
@@ -1492,12 +1492,6 @@ unsafe extern "C" {
         Ty: &'a Type,
         Name: *const c_char,
     ) -> &'a Value;
-    pub(crate) fn LLVMBuildArrayAlloca<'a>(
-        B: &Builder<'a>,
-        Ty: &'a Type,
-        Val: &'a Value,
-        Name: *const c_char,
-    ) -> &'a Value;
     pub(crate) fn LLVMBuildLoad2<'a>(
         B: &Builder<'a>,
         Ty: &'a Type,