We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5023db commit c2e0857Copy full SHA for c2e0857
crates/allocator/src/bump.rs
@@ -31,7 +31,7 @@ const PAGE_SIZE: usize = 64 * 1024;
31
static mut INNER: Option<InnerAlloc> = None;
32
33
#[cfg(target_arch = "riscv64")]
34
-static mut RISCV_HEAP: [u8; 1024 * 10] = [0; 1024 * 1024];
+static mut RISCV_HEAP: [u8; 1024 * 1024] = [0; 1024 * 1024];
35
36
/// A bump allocator suitable for use in a Wasm environment.
37
pub struct BumpAllocator;
0 commit comments