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