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