From 1ab0a14388038b12fc6d9ea5254b88b7855f2768 Mon Sep 17 00:00:00 2001 From: Aleksandr Emelenko Date: Fri, 18 Nov 2022 16:08:08 +0300 Subject: [PATCH] Added stack-like allocator support Change-Id: I32b91b303ef06acde68376cf26634a9289ee86a3 Signed-off-by: Aleksandr Emelenko --- aot/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aot/main.cpp b/aot/main.cpp index 51c8339d7..3db96ff20 100644 --- a/aot/main.cpp +++ b/aot/main.cpp @@ -32,7 +32,7 @@ public: { constexpr auto COMPILER_SIZE = 256_MB; - MemConfig::Initialize(0, 0, COMPILER_SIZE, 0); + MemConfig::Initialize(0, 0, COMPILER_SIZE, 0, 0); PoolManager::Initialize(PoolType::MMAP); } -- Gitee