summaryrefslogtreecommitdiff
path: root/test/interp/expr-brif.txt
blob: 0207dffd1c5964390aeb36f8fd3b08c3b0bc5882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;;; TOOL: run-interp
(module
  (func (param i32) (result i32)
    (block $exit (result i32)
      (i32.sub
        (br_if $exit (i32.const 42) (local.get 0))
        (i32.const 13))))

  (func (export "test1") (result i32)
    (call 0 (i32.const 0)))

  (func (export "test2") (result i32)
    (call 0 (i32.const 1))))
(;; STDOUT ;;;
test1() => i32:29
test2() => i32:42
;;; STDOUT ;;)