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