WIP FPC-III support
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / CoRW+poonceonce+Once.litmus
blob5faae98f7ffb3f9890e8f6674967ea6ef3ea53e1
1 C CoRW+poonceonce+Once
3 (*
4  * Result: Never
5  *
6  * Test of read-write coherence, that is, whether or not a read from
7  * a given variable and a later write to that same variable are ordered.
8  *)
11         int x;
14 P0(int *x)
16         int r0;
18         r0 = READ_ONCE(*x);
19         WRITE_ONCE(*x, 1);
22 P1(int *x)
24         WRITE_ONCE(*x, 2);
27 exists (x=2 /\ 0:r0=2)