summaryrefslogtreecommitdiff
path: root/test/atomics-unshared.wast
blob: 7b6d7bc3b7d37a9c6da0a8037df9c31856b54ea1 (plain)
1
2
3
4
5
6
7
8
9
10
(module
 (memory $0 1 1)
 (func $foo
  (drop (i32.atomic.rmw.cmpxchg
   (i32.const 0)
   (i32.const 0)
   (i32.const 0)
  ))
 )
)