builtin_08_atomic_store_n.c (95B)
1 int test_main(void) { 2 int x = 0; 3 __atomic_store_n(&x, 42, __ATOMIC_RELEASE); 4 return x; 5 }