summaryrefslogtreecommitdiff
path: root/test/reduce/simple.wast
blob: e5442419088ea251425612c46ff9deefafeeffc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(module
  (export "x" (func $x))
  (func $x (result i32)
    (nop)
    (nop)
    (nop)
    (drop (i32.const 1234))
    (i32.const 5678) ;; easily reducible
  )
  (func $not-exported
    (nop)
    (unreachable)
  )
)