File: fusing.wast.toMerge

package info (click to toggle)
binaryen 68-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 34,900 kB
  • sloc: cpp: 57,351; ansic: 3,562; python: 2,898; sh: 700; makefile: 6
file content (20 lines) | stat: -rw-r--r-- 567 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(module
  (import "env" "memoryBase" (global $memoryBase i32))
  (import "env" "tableBase" (global $tableBase i32))
  (import "env" "memory" (memory $0 256))
  (import "env" "table" (table 0 funcref))
  (import "env" "foo" (func $b-foo))
  (export "bar" (func $bar-func))
  (global $b-global f64 (f64.const 2.14281428))
  (export "bglobal" (global $b-global))
  (import "env" "aglobal" (global $a-global i32))
  (func $b
    (call $b-foo)
  )
  (func $bar-func
    (drop (f64.const 3.14159))
    (drop (global.get $a-global))
    (drop (global.get $b-global))
  )
)