summaryrefslogtreecommitdiff
path: root/test/unreachable-pops.wasm.fromBinary
blob: d4ed2ae703c407bf09a852327e3785358128512b (plain)
1
2
3
4
5
6
7
8
9
10
(module
 (type $0 (func (result i32)))
 (func $0 (result i32)
  (i32.add
   (unreachable)
   (unreachable)
  )
 )
)