]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20010423-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20010423-1.c
diff --git a/gcc/testsuite/gcc.dg/20010423-1.c b/gcc/testsuite/gcc.dg/20010423-1.c
deleted file mode 100644 (file)
index 06af789..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* { dg-do compile { target ia64-*-* } } */
-/* { dg-options "-O2" } */
-
-int __sync_fetch_and_add_si (int *, int);
-
-inline unsigned int
-bar (volatile unsigned int *mem, unsigned int val)
-{
-  return __sync_fetch_and_add_si((int *)mem, (int)val);
-}
-
-volatile unsigned int x;
-
-void foo (unsigned short *a)
-{
-  *a = bar (&x, 1) + 1;
-}