builtin_07_atomic_fetch_add.c (97B)
1 int test_main(void) { 2 int x = 40; 3 __atomic_fetch_add(&x, 2, __ATOMIC_RELAXED); 4 return x; 5 }