summaryrefslogtreecommitdiff
path: root/test/memorygrowth-minimal.fromasm.imprecise
diff options
context:
space:
mode:
Diffstat (limited to 'test/memorygrowth-minimal.fromasm.imprecise')
-rw-r--r--test/memorygrowth-minimal.fromasm.imprecise9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/memorygrowth-minimal.fromasm.imprecise b/test/memorygrowth-minimal.fromasm.imprecise
new file mode 100644
index 000000000..4f308717e
--- /dev/null
+++ b/test/memorygrowth-minimal.fromasm.imprecise
@@ -0,0 +1,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)
+ )
+ )
+)