blob: 64d6d4abdf8da4ad6b9cedcdd527317480cdf4c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
(module
(type $none_=>_none (func))
(type $none_=>_i32 (func (result i32)))
(type $none_=>_i64 (func (result i64)))
(type $none_=>_f32 (func (result f32)))
(type $none_=>_f64 (func (result f64)))
(type $none_=>_funcref (func (result funcref)))
(type $none_=>_anyref (func (result anyref)))
(type $none_=>_exnref (func (result exnref)))
(export "ppi32" (func $0))
(export "ppi64" (func $1))
(export "ppf32" (func $2))
(export "ppf64" (func $3))
(export "ppanyref" (func $4))
(export "ppfuncref" (func $5))
(export "ppnullref" (func $6))
(export "ppexnref" (func $7))
(func $0 (; 0 ;) (result i32)
(i32.const 1)
)
(func $1 (; 1 ;) (result i64)
(i64.const 1)
)
(func $2 (; 2 ;) (result f32)
(f32.const 1)
)
(func $3 (; 3 ;) (result f64)
(f64.const 1)
)
(func $4 (; 4 ;) (result anyref)
(local $0 anyref)
(local.get $0)
)
(func $5 (; 5 ;) (result funcref)
(local $0 funcref)
(local.get $0)
)
(func $6 (; 6 ;)
(drop
(ref.null)
)
)
(func $7 (; 7 ;) (result exnref)
(local $0 exnref)
(local.get $0)
)
)
|