blob: 259e89b819e5ff3c4a6a6b85f7b7e5bc7ce4beed [file] [log] [blame] [edit]
;; 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))
)