summaryrefslogtreecommitdiff
path: root/test/grow_memory.wast.fromBinary
diff options
context:
space:
mode:
Diffstat (limited to 'test/grow_memory.wast.fromBinary')
-rw-r--r--test/grow_memory.wast.fromBinary4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/grow_memory.wast.fromBinary b/test/grow_memory.wast.fromBinary
index e5be876cb..bf93f1f35 100644
--- a/test/grow_memory.wast.fromBinary
+++ b/test/grow_memory.wast.fromBinary
@@ -5,12 +5,12 @@
(export "memory" (memory $0))
(export "grow" (func $0))
(export "current" (func $1))
- (func $0 (; 0 ;) (param $0 i32) (result i32)
+ (func $0 (param $0 i32) (result i32)
(memory.grow
(local.get $0)
)
)
- (func $1 (; 1 ;) (result i32)
+ (func $1 (result i32)
(memory.size)
)
)