diff options
Diffstat (limited to 'test/reduce/atomics-and-bulk-memory.wast')
-rw-r--r-- | test/reduce/atomics-and-bulk-memory.wast | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/reduce/atomics-and-bulk-memory.wast b/test/reduce/atomics-and-bulk-memory.wast new file mode 100644 index 000000000..a5b31d4be --- /dev/null +++ b/test/reduce/atomics-and-bulk-memory.wast @@ -0,0 +1,27 @@ +(module + (memory 1 1) + ;; this can be removed destructively + (data passive "some-data") + (func "foo" (result i32) + ;; this can be removed destructively + (memory.init 0 + (i32.const 3) + (i32.const 3) + (i32.const 3)) + (i32.atomic.store8 + (i32.const 0) + ;; an add that can be optimized + (i32.add + (i32.const 97) + (i32.const 2) + ) + ) + ;; add some nops and blocks for reduction to remove + (nop) + (block (result i32) + (i32.atomic.load8_u + (i32.const 0) + ) + ) + ) +) |