summaryrefslogtreecommitdiff
path: root/test/passes/untee.wast
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2021-07-03 00:28:22 +0000
committerGitHub <noreply@github.com>2021-07-03 00:28:22 +0000
commitcdf9ee0fdff72384d2192fb32c20bf05287dba97 (patch)
treea712038e96001e5bc0f9741be61d65bbc7313c05 /test/passes/untee.wast
parent643b96736b7b5b75b91ab35ee926154eb33492e0 (diff)
downloadbinaryen-cdf9ee0fdff72384d2192fb32c20bf05287dba97.tar.gz
binaryen-cdf9ee0fdff72384d2192fb32c20bf05287dba97.tar.bz2
binaryen-cdf9ee0fdff72384d2192fb32c20bf05287dba97.zip
Add a script for porting passes tests to lit (#3963)
And use it to port the very simple untee test.
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)))
- )
-)
-