summaryrefslogtreecommitdiff
path: root/test/passes/extract-function_pass-arg=extract@foo.wast
blob: 876910300bf4dd49d4020be9307cd0a2abe3d4f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(module
  (func $foo
    (call $bar)
  )
  (func $bar
    (call $foo)
  )
  (func $other
    (drop (i32.const 1))
  )
)