]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20020122-3.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20020122-3.c
diff --git a/gcc/testsuite/gcc.dg/20020122-3.c b/gcc/testsuite/gcc.dg/20020122-3.c
deleted file mode 100644 (file)
index 42a4605..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Check that the combination of -Os and -fprefetch-loop-arrays does not
-   cause the compiler to crash, which it originally did on i?86.
-   Warnings are turned off because not all targets support prefetch.  */
-
-/* { dg-do compile } */
-/* { dg-options "-Os -fprefetch-loop-arrays -w" } */
-/* { dg-options "-Os -fprefetch-loop-arrays -mcpu=pentium3 -w" { target i?86-*-* } } */
-
-int foo (int *p, int n)
-{
-  int i, r;
-  for (i = 0; i < n; i++)
-    r += p[i];
-  return r;
-}