blob: beb89a66a228264c76a3ebe629f904f1475ef3b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
)
)
|