blob: 54701dae33d79fb399ae0134d6c09f74825f8873 (
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
|
(module
(table 0 anyfunc)
(memory $0 1)
(data (i32.const 4) "\10\04\00\00")
(export "memory" (memory $0))
(export "immediate_f32" (func $immediate_f32))
(export "immediate_f64" (func $immediate_f64))
(export "bitcast_i32_f32" (func $bitcast_i32_f32))
(export "bitcast_f32_i32" (func $bitcast_f32_i32))
(export "bitcast_i64_f64" (func $bitcast_i64_f64))
(export "bitcast_f64_i64" (func $bitcast_f64_i64))
(func $immediate_f32 (result f32)
(f32.const 2.5)
)
(func $immediate_f64 (result f64)
(f64.const 2.5)
)
(func $bitcast_i32_f32 (param $0 f32) (result i32)
(i32.reinterpret/f32
(get_local $0)
)
)
(func $bitcast_f32_i32 (param $0 i32) (result f32)
(f32.reinterpret/i32
(get_local $0)
)
)
(func $bitcast_i64_f64 (param $0 f64) (result i64)
(i64.reinterpret/f64
(get_local $0)
)
)
(func $bitcast_f64_i64 (param $0 i64) (result f64)
(f64.reinterpret/i64
(get_local $0)
)
)
)
;; METADATA: { "asmConsts": {},"staticBump": 1040, "initializers": [] }
|