summaryrefslogtreecommitdiff
path: root/test/unreachable-code.wast.fromBinary
diff options
context:
space:
mode:
Diffstat (limited to 'test/unreachable-code.wast.fromBinary')
-rw-r--r--test/unreachable-code.wast.fromBinary22
1 files changed, 11 insertions, 11 deletions
diff --git a/test/unreachable-code.wast.fromBinary b/test/unreachable-code.wast.fromBinary
index 26177527d..dd0a1cec6 100644
--- a/test/unreachable-code.wast.fromBinary
+++ b/test/unreachable-code.wast.fromBinary
@@ -1,32 +1,32 @@
(module
- (type $none_=>_none (func))
- (func $a (type $none_=>_none)
+ (type $0 (func))
+ (func $a (type $0)
(if
(i32.const 1)
(unreachable)
)
)
- (func $b (type $none_=>_none)
+ (func $b (type $0)
(if
(i32.const 1)
(unreachable)
(unreachable)
)
)
- (func $a-block (type $none_=>_none)
+ (func $a-block (type $0)
(if
(i32.const 1)
(unreachable)
)
)
- (func $b-block (type $none_=>_none)
+ (func $b-block (type $0)
(if
(i32.const 1)
(unreachable)
(unreachable)
)
)
- (func $a-prepost (type $none_=>_none)
+ (func $a-prepost (type $0)
(nop)
(if
(i32.const 1)
@@ -34,7 +34,7 @@
)
(nop)
)
- (func $b-prepost (type $none_=>_none)
+ (func $b-prepost (type $0)
(nop)
(if
(i32.const 1)
@@ -42,7 +42,7 @@
(unreachable)
)
)
- (func $a-block-prepost (type $none_=>_none)
+ (func $a-block-prepost (type $0)
(nop)
(if
(i32.const 1)
@@ -50,7 +50,7 @@
)
(nop)
)
- (func $b-block-prepost (type $none_=>_none)
+ (func $b-block-prepost (type $0)
(nop)
(if
(i32.const 1)
@@ -58,7 +58,7 @@
(unreachable)
)
)
- (func $recurse (type $none_=>_none)
+ (func $recurse (type $0)
(nop)
(block $label$1
(nop)
@@ -66,7 +66,7 @@
)
(nop)
)
- (func $recurse-b (type $none_=>_none)
+ (func $recurse-b (type $0)
(block $label$1
(nop)
(block $label$2