blob: 0a95ece6c952f8a52d4aabe476ba00e5965f290d (
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
|
;;; TOOL: run-roundtrip
;;; ARGS: --stdout --fold-exprs
(module
(global (mut i32) (i32.const 1))
(global (mut f32) (f32.const 1.5))
(func $fold-global-get (result i32)
global.get 1
drop
global.get 0
global.get 0
i32.mul)
(func $fold-global-set
global.get 0
i32.const 1
i32.add
global.set 0
f32.const 2
global.set 1)
)
(;; STDOUT ;;;
(module
(type (;0;) (func (result i32)))
(type (;1;) (func))
(func (;0;) (type 0) (result i32)
(drop
(global.get 1))
(i32.mul
(global.get 0)
(global.get 0)))
(func (;1;) (type 1)
(global.set 0
(i32.add
(global.get 0)
(i32.const 1)))
(global.set 1
(f32.const 0x1p+1 (;=2;))))
(global (;0;) (mut i32) (i32.const 1))
(global (;1;) (mut f32) (f32.const 0x1.8p+0 (;=1.5;))))
;;; STDOUT ;;)
|