diff --git a/crates/allocator/src/bump.rs b/crates/allocator/src/bump.rs index 58de274432..6b9431eec0 100644 --- a/crates/allocator/src/bump.rs +++ b/crates/allocator/src/bump.rs @@ -31,7 +31,7 @@ const PAGE_SIZE: usize = 64 * 1024; static mut INNER: Option = None; #[cfg(target_arch = "riscv64")] -static mut RISCV_HEAP: [u8; 1024 * 10] = [0; 1024 * 1024]; +static mut RISCV_HEAP: [u8; 1024 * 1024] = [0; 1024 * 1024]; /// A bump allocator suitable for use in a Wasm environment. pub struct BumpAllocator;