summaryrefslogtreecommitdiff
path: root/test/reduce
diff options
context:
space:
mode:
Diffstat (limited to 'test/reduce')
-rw-r--r--test/reduce/destructive.wast4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/reduce/destructive.wast b/test/reduce/destructive.wast
index 2670fccf9..743141de6 100644
--- a/test/reduce/destructive.wast
+++ b/test/reduce/destructive.wast
@@ -2,7 +2,9 @@
(export "x" (func $x))
(func $x (param $x i32) (result i32)
(if (i32.eq (local.get $x) (i32.const 98658746))
- (unreachable) ;; this can be removed destructively, since we do not sent this param
+ (then
+ (unreachable) ;; this can be removed destructively, since we do not sent this param
+ )
)
(i32.const 100)
)