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