summaryrefslogtreecommitdiff
path: root/test/passes/pick-load-signs_all-features.txt
blob: 4bb3c1c98f57a39b239ff9bfb449e8b351538976 (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
(module
 (type $0 (func (result i32)))
 (memory $0 16 16)
 (func $atomics-are-always-unsigned (type $0) (result i32)
  (local $0 i32)
  (drop
   (block (result i32)
    (local.set $0
     (i32.atomic.load16_u
      (i32.const 27)
     )
    )
    (i32.shr_s
     (i32.shl
      (local.get $0)
      (i32.const 16)
     )
     (i32.const 16)
    )
   )
  )
  (i32.const -65)
 )
)