summaryrefslogtreecommitdiff
path: root/test/passes/asyncify_pass-arg=asyncify-asserts_pass-arg=asyncify-whitelist@waka.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/asyncify_pass-arg=asyncify-asserts_pass-arg=asyncify-whitelist@waka.wast')
-rw-r--r--test/passes/asyncify_pass-arg=asyncify-asserts_pass-arg=asyncify-whitelist@waka.wast25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/passes/asyncify_pass-arg=asyncify-asserts_pass-arg=asyncify-whitelist@waka.wast b/test/passes/asyncify_pass-arg=asyncify-asserts_pass-arg=asyncify-whitelist@waka.wast
deleted file mode 100644
index 7d67c89ed..000000000
--- a/test/passes/asyncify_pass-arg=asyncify-asserts_pass-arg=asyncify-whitelist@waka.wast
+++ /dev/null
@@ -1,25 +0,0 @@
-(module
- (memory 1 2)
- (type $f (func))
- (import "env" "import" (func $import))
- (import "env" "import2" (func $import2 (result i32)))
- (import "env" "import3" (func $import3 (param i32)))
- (table 1 1)
- (func $calls-import
- (call $import)
- )
- (func $calls-import2-drop
- (drop (call $import2))
- )
- (func $returns (result i32)
- (local $x i32)
- (local.set $x (call $import2))
- (local.get $x)
- )
- (func $calls-indirect (param $x i32)
- (call_indirect (type $f)
- (local.get $x)
- )
- )
-)
-