summaryrefslogtreecommitdiff
path: root/test/passes/dealign64.txt
blob: cbbe0b375a0009a83cb255d64a4ef0594f179e6d (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
(module
 (type $none_=>_none (func))
 (memory $0 i64 1 1)
 (func $test
  (drop
   (i32.load align=1
    (i64.const 4)
   )
  )
  (drop
   (i32.load align=1
    (i64.const 8)
   )
  )
  (drop
   (i32.load align=1
    (i64.const 12)
   )
  )
  (i32.store align=1
   (i64.const 16)
   (i32.const 28)
  )
  (i32.store align=1
   (i64.const 20)
   (i32.const 32)
  )
  (i32.store align=1
   (i64.const 24)
   (i32.const 36)
  )
 )
)