blob: 1da5afd612789795234b62a4fa407fb8b3fd7494 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
(module
(memory 256 256)
(func $b0 (param $x i32)
(i32.load
(i32.add
(get_local $x)
(i32.const 1)
)
)
(i32.load
(i32.add
(get_local $x)
(i32.const 8)
)
)
(i32.load
(i32.add
(get_local $x)
(i32.const 1023)
)
)
(i32.load
(i32.add
(get_local $x)
(i32.const 1024)
)
)
(i32.load
(i32.add
(get_local $x)
(i32.const 2048)
)
)
(i32.load
(i32.add
(i32.const 4)
(get_local $x)
)
)
)
)
|