summaryrefslogtreecommitdiff
path: root/test/passes/asyncify_pass-arg=asyncify-blacklist@foo,bar.wast
blob: 8496e7ee28f39de0c68b5f543e523e1e026f46c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(module
  (memory 1 2)
  (import "env" "import" (func $import))
  (func $foo
    (call $import)
  )
  (func $bar
    (call $import)
  )
  (func $baz
    (call $import)
  )
  (func $other1
    (call $foo)
  )
  (func $other2
    (call $baz)
  )
)