summaryrefslogtreecommitdiff
path: root/test/passes/reorder-functions.wast
blob: 99a8363d4ac70a362cb697949d7cbd8edc314703 (plain)
1
2
3
4
5
6
(module
  (memory 256 256)
  (func $a (call $a))
  (func $b (call $b) (call $b))
  (func $c (call $c) (call $c) (call $c))
)