summaryrefslogtreecommitdiff
path: root/test/passes/post-emscripten.txt
blob: f511115246885d5f7c11611413e8d27dbc2d6f92 (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 $0 256 256)
  (type $0 (func (param i32)))
  (func $b0 (type $0) (param $x i32)
    (drop
      (i32.load offset=1
        (get_local $x)
      )
    )
    (drop
      (i32.load offset=8
        (get_local $x)
      )
    )
    (drop
      (i32.load offset=1023
        (get_local $x)
      )
    )
    (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 offset=4
        (get_local $x)
      )
    )
  )
)