summaryrefslogtreecommitdiff
path: root/test/passes/post-emscripten.wast
blob: b554fea53601bfcb14854ee63c6e33d037dbb0d9 (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
43
44
45
46
47
48
49
50
51
52
53
54
(module
  (memory 256 256)
  (type $0 (func (param i32)))
  (func $b0 (type $0) (param $x i32)
    (drop
      (i32.load
        (i32.add
          (get_local $x)
          (i32.const 1)
        )
      )
    )
    (drop
      (i32.load
        (i32.add
          (get_local $x)
          (i32.const 8)
        )
      )
    )
    (drop
      (i32.load
        (i32.add
          (get_local $x)
          (i32.const 1023)
        )
      )
    )
    (drop
      (i32.load
        (i32.add
          (get_local $x)
          (i32.const 1024)
        )
      )
    )
    (drop
      (i32.load
        (i32.add
          (get_local $x)
          (i32.const 2048)
        )
      )
    )
    (drop
      (i32.load
        (i32.add
          (i32.const 4)
          (get_local $x)
        )
      )
    )
  )
)