blob: 2bfdaa39356b3134195bec76970b5f77732608e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
;;; TOOL: run-roundtrip
;;; ARGS: --stdout --generate-names
(module
(global i32 (i32.const 42))
(global (mut f32) (f32.const -1.5))
(func (result i32)
f32.const 3.0
global.set 1
global.get 0))
(;; STDOUT ;;;
(module
(type $t0 (func (result i32)))
(func $f0 (type $t0) (result i32)
f32.const 0x1.8p+1 (;=3;)
global.set $g1
global.get $g0)
(global $g0 i32 (i32.const 42))
(global $g1 (mut f32) (f32.const -0x1.8p+0 (;=-1.5;))))
;;; STDOUT ;;)
|