Merge tag 'block-5.9-2020-08-14' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / CoWW+poonceonce.litmus
blob0d9f0a9587996cd37950a7fd4e12eed1e7a7faf9
1 C CoWW+poonceonce
3 (*
4  * Result: Never
5  *
6  * Test of write-write coherence, that is, whether or not two successive
7  * writes to the same variable are ordered.
8  *)
12 P0(int *x)
14         WRITE_ONCE(*x, 1);
15         WRITE_ONCE(*x, 2);
18 exists (x=1)