]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/i386-unroll-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / i386-unroll-1.c
diff --git a/gcc/testsuite/gcc.dg/i386-unroll-1.c b/gcc/testsuite/gcc.dg/i386-unroll-1.c
deleted file mode 100644 (file)
index 9aa2275..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* PR optimization/8599 */
-/* { dg-do run { target i?86-*-* } } */
-/* { dg-options "-mcpu=k6 -O2 -funroll-loops" } */
-
-extern void exit (int);
-
-void *array[4];
-
-int main ()
-{
-  int i;
-  for (i = 0; i < 4; i++)
-    array[i] = 0;
-
-  exit (0);
-}