summaryrefslogtreecommitdiff
path: root/test/passes/log-execution.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/log-execution.wast')
-rw-r--r--test/passes/log-execution.wast8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/passes/log-execution.wast b/test/passes/log-execution.wast
index f7448408a..b84d7ac1f 100644
--- a/test/passes/log-execution.wast
+++ b/test/passes/log-execution.wast
@@ -7,7 +7,7 @@
(i32.const 10)
)
(func $workk
- (if (i32.const 0) (nop))
+ (if (i32.const 0) (then (nop)))
(drop (i32.const 1))
)
(func $loops
@@ -16,8 +16,10 @@
(br $x)
)
(if (call $intt)
- (loop $y
- (call $loops)
+ (then
+ (loop $y
+ (call $loops)
+ )
)
)
(loop