blob: a152a5376dace9dd2db8472463669173fc111b2b (
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) ;; even though we call foo, we are not in the only list, so do not instrument us
)
(func $other2
(call $baz)
)
)
|