diff options
Diffstat (limited to 'test/grow_memory.wast.fromBinary')
-rw-r--r-- | test/grow_memory.wast.fromBinary | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/grow_memory.wast.fromBinary b/test/grow_memory.wast.fromBinary index 706495c97..8a54e4a7c 100644 --- a/test/grow_memory.wast.fromBinary +++ b/test/grow_memory.wast.fromBinary @@ -1,16 +1,16 @@ (module - (type $0 (func (param i32) (result i32))) - (type $1 (func (result i32))) + (type $0 (func (result i32))) + (type $1 (func (param i32) (result i32))) (memory $0 1) (export "memory" (memory $0)) (export "grow" (func $0)) (export "current" (func $1)) - (func $0 (; 0 ;) (type $0) (param $0 i32) (result i32) + (func $0 (; 0 ;) (type $1) (param $0 i32) (result i32) (memory.grow (local.get $0) ) ) - (func $1 (; 1 ;) (type $1) (result i32) + (func $1 (; 1 ;) (type $0) (result i32) (memory.size) ) ) |