diff options
Diffstat (limited to 'test/passes/asyncify_pass-arg=asyncify-addlist@foo.wast')
-rw-r--r-- | test/passes/asyncify_pass-arg=asyncify-addlist@foo.wast | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/passes/asyncify_pass-arg=asyncify-addlist@foo.wast b/test/passes/asyncify_pass-arg=asyncify-addlist@foo.wast new file mode 100644 index 000000000..beb89a66a --- /dev/null +++ b/test/passes/asyncify_pass-arg=asyncify-addlist@foo.wast @@ -0,0 +1,13 @@ +(module + (memory 1 2) + (import "env" "import" (func $import)) + (func $foo ;; doesn't look like it needs instrumentation, but in add list + (call $nothing) + ) + (func $bar ;; doesn't look like it needs instrumentation, and not in add list + (call $nothing) + ) + (func $nothing + ) +) + |