diff options
Diffstat (limited to 'test/memorygrowth-minimal.fromasm.no-opts')
-rw-r--r-- | test/memorygrowth-minimal.fromasm.no-opts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/memorygrowth-minimal.fromasm.no-opts b/test/memorygrowth-minimal.fromasm.no-opts index 6487ed668..7a07ac465 100644 --- a/test/memorygrowth-minimal.fromasm.no-opts +++ b/test/memorygrowth-minimal.fromasm.no-opts @@ -1,12 +1,12 @@ (module (import "env" "memory" (memory $memory 256)) - (import "env" "table" (table $table 0 0 anyfunc)) + (import "env" "table" (table $table 0 0 funcref)) (import "env" "__memory_base" (global $__memory_base i32)) (import "env" "__table_base" (global $__table_base i32)) (export "__growWasmMemory" (func $__growWasmMemory)) (func $__growWasmMemory (; 0 ;) (param $newSize i32) (result i32) (grow_memory - (get_local $newSize) + (local.get $newSize) ) ) ) |