summaryrefslogtreecommitdiff
path: root/test/memorygrowth-minimal.fromasm
blob: 64bf2cd4ca21e1028158da48fa29157d7bbbc87a (plain)
1
2
3
4
5
6
7
8
9
10
11
(module
 (import "env" "memory" (memory $memory 256))
 (data (get_global $memoryBase) "memorygrowth-minimal.asm.js")
 (import "env" "memoryBase" (global $memoryBase i32))
 (export "__growWasmMemory" (func $__growWasmMemory))
 (func $__growWasmMemory (; 0 ;) (; has Stack IR ;) (param $0 i32) (result i32)
  (grow_memory
   (get_local $0)
  )
 )
)