summaryrefslogtreecommitdiff
path: root/test/passes/lower-if-else.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/lower-if-else.wast')
-rw-r--r--test/passes/lower-if-else.wast29
1 files changed, 0 insertions, 29 deletions
diff --git a/test/passes/lower-if-else.wast b/test/passes/lower-if-else.wast
deleted file mode 100644
index 138a8a206..000000000
--- a/test/passes/lower-if-else.wast
+++ /dev/null
@@ -1,29 +0,0 @@
-(module
- (memory 256 256)
- (func $ifs
- (block
- (if
- (i32.const 0)
- (i32.const 1)
- )
- (if_else
- (i32.const 0)
- (i32.const 1)
- (i32.const 2)
- )
- (if_else
- (i32.const 4)
- (i32.const 5)
- (i32.const 6)
- )
- (i32.eq
- (if_else
- (i32.const 4)
- (i32.const 5)
- (i32.const 6)
- )
- (i32.const 177)
- )
- )
- )
-)