summaryrefslogtreecommitdiff
path: root/test/merge/printf.wast.toMerge
blob: d394abe34a5d07511c8029226d0b2fe7fc70e79f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(module
  (import "env" "memoryBase" (global $memoryBase i32))
  (import "env" "tableBase" (global $tableBase i32))
  (import "env" "memory" (memory $0 256))
  (import "env" "table" (table 0 anyfunc))
  (import "env" "globally" (global $i-collide f64))
  (import "env" "_printf" (func $import$8 (param i32 i32) (result i32)))
  (func $b
    (drop
      (call $import$8 (i32.const 11) (i32.const 22))
    )
  )
)