diff options
Diffstat (limited to 'test/passes/asyncify_mod-asyncify-never-unwind.wast')
-rw-r--r-- | test/passes/asyncify_mod-asyncify-never-unwind.wast | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/passes/asyncify_mod-asyncify-never-unwind.wast b/test/passes/asyncify_mod-asyncify-never-unwind.wast deleted file mode 100644 index 70cb7e8fb..000000000 --- a/test/passes/asyncify_mod-asyncify-never-unwind.wast +++ /dev/null @@ -1,20 +0,0 @@ -(module - (memory 1 2) - (import "env" "import" (func $import)) - (import "env" "import2" (func $import2 (result i32))) - (import "env" "import3" (func $import3 (param i32))) - (func $calls-import - (call $import) - ) - (func $calls-import2 (result i32) - (local $temp i32) - (local.set $temp (call $import2)) - (return (local.get $temp)) - ) - (func $calls-import2-drop - (drop (call $import2)) - ) - (func $calls-nothing - (drop (i32.eqz (i32.const 17))) - ) -) |