summaryrefslogtreecommitdiff
path: root/test/lit/validation/shared-memory.wast
blob: 259e89b819e5ff3c4a6a6b85f7b7e5bc7ce4beed (plain)
1
2
3
4
5
6
7
8
9
10
11
;; Test that shared memory requires atomics

;; RUN: not wasm-opt %s 2>&1 | filecheck %s --check-prefix NO-ATOMICS
;; RUN: wasm-opt %s --enable-threads -o - -S | filecheck %s --check-prefix ATOMICS

;; NO-ATOMICS: memory is shared, but atomics are disabled
;; ATOMICS: (memory $0 (shared 10 20))

(module
  (memory (shared 10 20))
)