summaryrefslogtreecommitdiff
path: root/test/interp/return-void.txt
blob: 704aedda837cdb209bf3c42d8d74a53e46e83928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;;; TOOL: run-interp
(module
  (memory 1)
  (func $store_unless (param i32)
    local.get 0
    i32.const 0
    i32.eq
    if
      return
    end
    i32.const 0
    i32.const 1
    i32.store)

  (func (export "test1")
    i32.const 0
    call $store_unless)

  (func (export "check1") (result i32)
    i32.const 0
    i32.load)

  (func (export "test2")
    i32.const 1
    call $store_unless)

  (func (export "check2") (result i32)
    i32.const 0
    i32.load))
(;; STDOUT ;;;
test1() =>
check1() => i32:0
test2() =>
check2() => i32:1
;;; STDOUT ;;)