diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2021-07-08 18:15:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-08 11:15:13 -0700 |
commit | 397a06e5992b11eb89493b0ebce08990bd2830c2 (patch) | |
tree | 49fb77f5f361997b85769879c4ec5a2694d83daf /test/passes/asyncify_pass-arg=asyncify-ignore-imports.wast | |
parent | 0a682d32870c3a7b2c908b0d7d7cab95338393c5 (diff) | |
download | binaryen-397a06e5992b11eb89493b0ebce08990bd2830c2.tar.gz binaryen-397a06e5992b11eb89493b0ebce08990bd2830c2.tar.bz2 binaryen-397a06e5992b11eb89493b0ebce08990bd2830c2.zip |
Port test/passes/asyncify* to lit (#3970)
Diffstat (limited to 'test/passes/asyncify_pass-arg=asyncify-ignore-imports.wast')
-rw-r--r-- | test/passes/asyncify_pass-arg=asyncify-ignore-imports.wast | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/test/passes/asyncify_pass-arg=asyncify-ignore-imports.wast b/test/passes/asyncify_pass-arg=asyncify-ignore-imports.wast deleted file mode 100644 index 80f0851d0..000000000 --- a/test/passes/asyncify_pass-arg=asyncify-ignore-imports.wast +++ /dev/null @@ -1,26 +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 funcref (elem $calls-import2-drop $calls-import2-drop)) - (func $calls-import - (call $import) - ) - (func $calls-import2-drop - (drop (call $import2)) - ) - (func $calls-import2-if-else (param $x i32) - (if (local.get $x) - (call $import3 (i32.const 1)) - (call $import3 (i32.const 2)) - ) - ) - (func $calls-indirect (param $x i32) - (call_indirect (type $f) - (local.get $x) - ) - ) -) - |