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