blob: 83d90e6dea6cd6e2d79f4501bb9c8c389b5c2ed1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
(module
(memory 1 1)
;; this can be removed destructively
(data "some-data")
(func $foo (export "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)
)
)
)
)
|