summaryrefslogtreecommitdiff
path: root/test/passes/remove-unused-names_code-folding.txt
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/remove-unused-names_code-folding.txt')
-rw-r--r--test/passes/remove-unused-names_code-folding.txt18
1 files changed, 12 insertions, 6 deletions
diff --git a/test/passes/remove-unused-names_code-folding.txt b/test/passes/remove-unused-names_code-folding.txt
index 85810131b..62d7e3405 100644
--- a/test/passes/remove-unused-names_code-folding.txt
+++ b/test/passes/remove-unused-names_code-folding.txt
@@ -1511,13 +1511,19 @@
)
(nop)
(drop
- (block (result i32)
- (drop
- (unreachable)
+ (if (result i32)
+ (unreachable)
+ (then
+ (i32.add
+ (i32.const 1)
+ (i32.const 2)
+ )
)
- (i32.add
- (i32.const 1)
- (i32.const 2)
+ (else
+ (i32.add
+ (i32.const 1)
+ (i32.const 2)
+ )
)
)
)