summaryrefslogtreecommitdiff
path: root/test/passes/generate-i64-dyncalls.wast
blob: 6fbfcc3310c1f0ee47b53f06a1656ccf9764f858 (plain)
1
2
3
4
5
6
7
8
9
10
(module
 (func $f1 (result i32)
  (i32.const 1024)
 )
 (func $f2 (param i32) (result i64)
  (i64.const 42)
 )
 (table 2 2 funcref)
 (elem (i32.const 0) $f1 $f2)
)