summaryrefslogtreecommitdiff
path: root/test/memorygrowth-minimal.fromasm.imprecise
blob: 1c70223ecb4f78521a4976967ddc4b6fe5e1bb95 (plain)
1
2
3
4
5
6
7
8
9
(module
 (import "env" "memory" (memory $memory 256))
 (export "__growWasmMemory" (func $__growWasmMemory))
 (func $__growWasmMemory (; 0 ;) (; has Stack IR ;) (param $0 i32) (result i32)
  (memory.grow
   (local.get $0)
  )
 )
)