blob: ac6901ff3b31dcdaac1ee0834dca059def86abd6 (
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 $0 (func (result i32)))
(type $1 (func (result i64)))
(type $2 (func (result f32)))
(type $3 (func (result f64)))
(export "ppi32" (func $0))
(export "ppi64" (func $1))
(export "ppf32" (func $2))
(export "ppf64" (func $3))
(func $0 (; 0 ;) (type $0) (result i32)
(i32.const 1)
)
(func $1 (; 1 ;) (type $1) (result i64)
(i64.const 1)
)
(func $2 (; 2 ;) (type $2) (result f32)
(f32.const 1)
)
(func $3 (; 3 ;) (type $3) (result f64)
(f64.const 1)
)
)
|