]> git.proxmox.com Git - rustc.git/blob - src/binaryen/test/merge/fusing.wast.combined.finalized.opt
New upstream version 1.23.0+dfsg1
[rustc.git] / src / binaryen / test / merge / fusing.wast.combined.finalized.opt
1 (module
2 (type $FUNCSIG$v (func))
3 (import "env" "memory" (memory $0 256))
4 (import "env" "table" (table 8 anyfunc))
5 (global $a-global i32 (i32.const 0))
6 (global $b-global f64 (f64.const 2.14281428))
7
8 (export "foo" (func $foo-func))
9 (export "aglobal" (global $a-global))
10 (export "bar" (func $bar-func))
11 (export "bglobal" (global $b-global))
12 (func $foo-func (; 0 ;) (type $FUNCSIG$v)
13 (nop)
14 (call $bar-func)
15 (drop
16 (get_global $a-global)
17 )
18 (drop
19 (get_global $b-global)
20 )
21 )
22 (func $bar-func (; 1 ;) (type $FUNCSIG$v)
23 (nop)
24 (drop
25 (get_global $a-global)
26 )
27 (drop
28 (get_global $b-global)
29 )
30 )
31 )