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