summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/passes/lower-if-else.txt42
-rw-r--r--test/passes/lower-if-else.wast29
2 files changed, 0 insertions, 71 deletions
diff --git a/test/passes/lower-if-else.txt b/test/passes/lower-if-else.txt
deleted file mode 100644
index 93dd6d916..000000000
--- a/test/passes/lower-if-else.txt
+++ /dev/null
@@ -1,42 +0,0 @@
-(module
- (memory 256 256)
- (type $0 (func))
- (func $ifs (type $0)
- (block $block0
- (if
- (i32.const 0)
- (i32.const 1)
- )
- (block $L0
- (if
- (i32.const 0)
- (br $L0
- (i32.const 1)
- )
- )
- (i32.const 2)
- )
- (block $L1
- (if
- (i32.const 4)
- (br $L1
- (i32.const 5)
- )
- )
- (i32.const 6)
- )
- (i32.eq
- (block $L2
- (if
- (i32.const 4)
- (br $L2
- (i32.const 5)
- )
- )
- (i32.const 6)
- )
- (i32.const 177)
- )
- )
- )
-)
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)
- )
- )
- )
-)