blob: 28e98b9fe338bc816d5998a429c0f8db1fa533a4 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
;; Test that shared-everything GC instructions require the shared-everything
;; feature.
;; RUN: not wasm-opt -all --disable-shared-everything %s 2>&1 | filecheck %s
(module
(type $struct (struct (field (mut i32))))
;; CHECK: struct.atomic.get requires shared-everything [--enable-shared-everything]
(func $get-seqcst (result i32)
(struct.atomic.get seqcst $struct 0
(struct.new_default $struct)
)
)
;; CHECK: struct.atomic.get requires shared-everything [--enable-shared-everything]
(func $get-acqrel (result i32)
(struct.atomic.get acqrel $struct 0
(struct.new_default $struct)
)
)
;; CHECK: struct.atomic.set requires shared-everything [--enable-shared-everything]
(func $set-seqcst
(struct.atomic.set seqcst $struct 0
(struct.new_default $struct)
(i32.const 0)
)
)
;; CHECK: struct.atomic.set requires shared-everything [--enable-shared-everything]
(func $set-acqrel
(struct.atomic.set acqrel $struct 0
(struct.new_default $struct)
(i32.const 0)
)
)
)
|