summaryrefslogtreecommitdiff
path: root/test/nonspec-bulk-memory.wast.fromBinary
diff options
context:
space:
mode:
Diffstat (limited to 'test/nonspec-bulk-memory.wast.fromBinary')
-rw-r--r--test/nonspec-bulk-memory.wast.fromBinary30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/nonspec-bulk-memory.wast.fromBinary b/test/nonspec-bulk-memory.wast.fromBinary
deleted file mode 100644
index f2c4c0c5e..000000000
--- a/test/nonspec-bulk-memory.wast.fromBinary
+++ /dev/null
@@ -1,30 +0,0 @@
-(module
- (type $0 (func))
- (memory $0 1024 1024)
- (data $0 (i32.const 0) "hello, world")
- (func $memory.init (type $0)
- (memory.init $0
- (i32.const 512)
- (i32.const 0)
- (i32.const 12)
- )
- )
- (func $data.drop (type $0)
- (data.drop $0)
- )
- (func $memory.copy (type $0)
- (memory.copy
- (i32.const 512)
- (i32.const 0)
- (i32.const 12)
- )
- )
- (func $memory.fill (type $0)
- (memory.fill
- (i32.const 0)
- (i32.const 42)
- (i32.const 1024)
- )
- )
-)
-