summaryrefslogtreecommitdiff
path: root/test/tail-call.wast.fromBinary.noDebugInfo
blob: 3babe3906603993ef27d7b8b81997a155249ae41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(module
 (type $none_=>_none (func))
 (table $0 1 1 funcref)
 (elem (i32.const 0) $0)
 (func $0 (; 0 ;)
  (return_call $1)
 )
 (func $1 (; 1 ;)
  (return_call_indirect (type $none_=>_none)
   (i32.const 0)
  )
 )
)