C C-release-is-A-cumulative.litmus { } P0(int *x) { WRITE_ONCE(*x, 1); } P1(int *x, int *y) { r1 = READ_ONCE(*x); smp_store_release(y, 1); } P2(int *x, int *y) { r2 = READ_ONCE(*y); smp_rmb(); r3 = READ_ONCE(*x); } exists (1:r1=1 /\ 2:r2=1 /\ 2:r3=0)