aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20061005-1.c
blob: a433509aec459c846c05f006c4a329c13985b6e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* PR target/28924 */

char c;

void
testc (void)
{
  (void) __sync_fetch_and_add (&c, -1);
}

short s;

void
tests (void)
{
  (void) __sync_fetch_and_add (&s, -1);
}

void
testc2 (void)
{
  (void) __sync_val_compare_and_swap (&c, -1, -3);
}