summaryrefslogtreecommitdiff
path: root/test/passes/reorder-functions.txt
blob: 2dd10eedba59251cc953522eaf1165c6786dcab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(module
 (type $none_=>_none (func))
 (memory $0 256 256)
 (func $c
  (call $c)
  (call $c)
  (call $c)
 )
 (func $b
  (call $b)
  (call $b)
 )
 (func $a
  (call $a)
 )
)