diff options
Diffstat (limited to 'test/bulk-memory.wast.fromBinary.noDebugInfo')
-rw-r--r-- | test/bulk-memory.wast.fromBinary.noDebugInfo | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/bulk-memory.wast.fromBinary.noDebugInfo b/test/bulk-memory.wast.fromBinary.noDebugInfo new file mode 100644 index 000000000..69d8db333 --- /dev/null +++ b/test/bulk-memory.wast.fromBinary.noDebugInfo @@ -0,0 +1,30 @@ +(module + (type $0 (func)) + (memory $0 1024 1024) + (data (i32.const 0) "hello, world") + (func $0 (; 0 ;) (type $0) + (memory.init 0 + (i32.const 512) + (i32.const 0) + (i32.const 12) + ) + ) + (func $1 (; 1 ;) (type $0) + (data.drop 0) + ) + (func $2 (; 2 ;) (type $0) + (memory.copy + (i32.const 512) + (i32.const 0) + (i32.const 12) + ) + ) + (func $3 (; 3 ;) (type $0) + (memory.fill + (i32.const 0) + (i32.const 42) + (i32.const 1024) + ) + ) +) + |