summaryrefslogtreecommitdiff
path: root/test/memorygrowth-minimal.fromasm.imprecise
blob: e41d1851a0ce8d6609ad494191842430a61bca25 (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)
  (grow_memory
   (get_local $0)
  )
 )
)