summaryrefslogtreecommitdiff
path: root/test/reduce
diff options
context:
space:
mode:
Diffstat (limited to 'test/reduce')
-rw-r--r--test/reduce/destructive.wast.txt2
-rw-r--r--test/reduce/imports.wast.txt2
-rw-r--r--test/reduce/memory_table.wast.txt6
-rw-r--r--test/reduce/simple.wast.txt2
4 files changed, 6 insertions, 6 deletions
diff --git a/test/reduce/destructive.wast.txt b/test/reduce/destructive.wast.txt
index f9deb1a04..c05c72d78 100644
--- a/test/reduce/destructive.wast.txt
+++ b/test/reduce/destructive.wast.txt
@@ -1,7 +1,7 @@
(module
(type $i32_=>_i32 (func (param i32) (result i32)))
(export "x" (func $0))
- (func $0 (; 0 ;) (param $0 i32) (result i32)
+ (func $0 (param $0 i32) (result i32)
(i32.const 100)
)
)
diff --git a/test/reduce/imports.wast.txt b/test/reduce/imports.wast.txt
index 4dff9a003..1c2a8c63f 100644
--- a/test/reduce/imports.wast.txt
+++ b/test/reduce/imports.wast.txt
@@ -1,7 +1,7 @@
(module
(type $none_=>_i32 (func (result i32)))
(export "x" (func $0))
- (func $0 (; 0 ;) (result i32)
+ (func $0 (result i32)
(i32.const 5678)
)
)
diff --git a/test/reduce/memory_table.wast.txt b/test/reduce/memory_table.wast.txt
index 4e250f02a..fe9e82072 100644
--- a/test/reduce/memory_table.wast.txt
+++ b/test/reduce/memory_table.wast.txt
@@ -5,10 +5,10 @@
(export "f1" (func $0))
(export "f2" (func $1))
(export "f4" (func $2))
- (func $0 (; 0 ;)
+ (func $0
(nop)
)
- (func $1 (; 1 ;) (result i32)
+ (func $1 (result i32)
(i32.store
(i32.const 0)
(i32.const 65530)
@@ -17,7 +17,7 @@
(i32.const 0)
)
)
- (func $2 (; 2 ;) (result i32)
+ (func $2 (result i32)
(i32.add
(call $1)
(i32.const 1234)
diff --git a/test/reduce/simple.wast.txt b/test/reduce/simple.wast.txt
index 4dff9a003..1c2a8c63f 100644
--- a/test/reduce/simple.wast.txt
+++ b/test/reduce/simple.wast.txt
@@ -1,7 +1,7 @@
(module
(type $none_=>_i32 (func (result i32)))
(export "x" (func $0))
- (func $0 (; 0 ;) (result i32)
+ (func $0 (result i32)
(i32.const 5678)
)
)