blob: 03128756c99658cb59a38c066839cfbabbf8fe29 (
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: shared memory requires threads [--enable-threads]
;; ATOMICS: (memory $0 (shared 10 20))
(module
(memory (shared 10 20))
)
|