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