blob: 52db1d5fbaeb0a28586fd6932b9f74eab40d1830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
(module
(type $none_=>_i32 (func (result i32)))
(type $none_=>_i64 (func (result i64)))
(type $none_=>_f32 (func (result f32)))
(type $none_=>_f64 (func (result f64)))
(export "ppi32" (func $0))
(export "ppi64" (func $1))
(export "ppf32" (func $2))
(export "ppf64" (func $3))
(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)
)
)
|