* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20061005-1.c
bloba433509aec459c846c05f006c4a329c13985b6e2
1 /* PR target/28924 */
3 char c;
5 void
6 testc (void)
8 (void) __sync_fetch_and_add (&c, -1);
11 short s;
13 void
14 tests (void)
16 (void) __sync_fetch_and_add (&s, -1);
19 void
20 testc2 (void)
22 (void) __sync_val_compare_and_swap (&c, -1, -3);