summaryrefslogtreecommitdiff
path: root/test/passes/untee.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/untee.wast')
-rw-r--r--test/passes/untee.wast12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/passes/untee.wast b/test/passes/untee.wast
deleted file mode 100644
index 6b66ccf84..000000000
--- a/test/passes/untee.wast
+++ /dev/null
@@ -1,12 +0,0 @@
-(module
- (func $tee
- (local $x i32)
- (local $y f64)
- (drop (local.tee $x (i32.const 1)))
- (drop (local.tee $y (f64.const 2)))
- (local.set $x (local.tee $x (i32.const 3)))
- (local.set $x (local.tee $x (local.tee $x (i32.const 3))))
- (drop (local.tee $x (unreachable)))
- )
-)
-