summaryrefslogtreecommitdiff
path: root/test/unit/input/stack_ir.wat
blob: 6969052c90586e0599cd1c8423d6fa85f7894ede (plain)
1
2
3
4
5
6
7
8
9
10
11
(module
  (import "env" "bar" (func $bar (param i32) (result i32)))
  (func $foo1 (export "foo1") (result i32)
    (local $x i32)
    (local.set $x (call $bar (i32.const 0)))
    (drop
     (call $bar (i32.const 1))
    )
    (local.get $x) ;; local2stack can help here
  )
)