blob: 355ca1b11723160ac787ddf55309271e6d392335 (
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 whitelist, so do not instrument us
)
(func $other2
(call $baz)
)
)
|