diff options
Diffstat (limited to 'test/ctor-eval/memory-init.wast.out')
-rw-r--r-- | test/ctor-eval/memory-init.wast.out | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/ctor-eval/memory-init.wast.out b/test/ctor-eval/memory-init.wast.out new file mode 100644 index 000000000..6019ea277 --- /dev/null +++ b/test/ctor-eval/memory-init.wast.out @@ -0,0 +1,18 @@ +(module + (type $none_=>_none (func)) + (memory $0 1) + (data (i32.const 0) "__________") + (data (i32.const 20) "__________") + (export "test1" (func $0)) + (func $0 + (i32.store8 + (i32.const 4) + (i32.const 100) + ) + (memory.init 1 + (i32.const 0) + (i32.const 0) + (i32.const 1) + ) + ) +) |