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