summaryrefslogtreecommitdiff
path: root/tools/memory-model/litmus-tests/CoWR+poonceonce+Once.litmus
blob: 6a35ec2042ea22832bf7d29edde77edd69d006c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
C CoWR+poonceonce+Once

{}

P0(int *x)
{
	int r0;

	WRITE_ONCE(*x, 1);
	r0 = READ_ONCE(*x);
}

P1(int *x)
{
	WRITE_ONCE(*x, 2);
}

exists (x=1 /\ 0:r0=2)