From 8da7d22e37e7b9b3878625474046da8b3553d81e Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Mon, 4 Sep 2017 09:30:21 +0300 Subject: [PATCH] increase DEFAULT_TABLE_SIZE from 16 to 64 --- src/interpreter/env.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpreter/env.rs b/src/interpreter/env.rs index ce5906d..9299db7 100644 --- a/src/interpreter/env.rs +++ b/src/interpreter/env.rs @@ -26,7 +26,7 @@ const DEFAULT_TABLE_BASE: u32 = 0; const DEFAULT_MEMORY_BASE: u32 = 0; /// Defaul table size. -const DEFAULT_TABLE_SIZE: u32 = 16; +const DEFAULT_TABLE_SIZE: u32 = 64; /// Index of default memory. const INDEX_MEMORY: u32 = 0;