Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.target / ia64 / 20010423-1.c
blob4cec79370de1b4e9079b460586c1a486084c9561
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 int __sync_fetch_and_add_si (int *, int);
6 inline unsigned int
7 bar (volatile unsigned int *mem, unsigned int val)
9 return __sync_fetch_and_add_si((int *)mem, (int)val);
12 volatile unsigned int x;
14 void foo (unsigned short *a)
16 *a = bar (&x, 1) + 1;