summaryrefslogtreecommitdiff
path: root/test/break-to-return.wasm.fromBinary
blob: a7be1448aa0b1833005cd079ab3d29792a53985c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(module
 (type $0 (func (param i32 i32) (result i32)))
 (memory $0 256 256)
 (export "add" (func $0))
 (func $0 (; 0 ;) (type $0) (param $0 i32) (param $1 i32) (result i32)
  (block $label$0 (result i32)
   (br $label$0
    (i32.add
     (get_local $0)
     (get_local $1)
    )
   )
  )
 )
)