summaryrefslogtreecommitdiff
path: root/test/passes/drop-return-values.wast
blob: 76463cc8ec270dafefdcb6bf954277b6da6f41f9 (plain)
1
2
3
4
5
6
7
8
9
(module
  (memory 10)
  (func
    (local $x i32)
    (i32.add (set_local $x (i32.const 10)) (i32.const 20))
    (i32.add (i32.store (i32.const 30) (i32.const 40)) (i32.const 50))
  )
)