]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20020116-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20020116-2.c
diff --git a/gcc/testsuite/gcc.dg/20020116-2.c b/gcc/testsuite/gcc.dg/20020116-2.c
deleted file mode 100644 (file)
index 04f5c6e..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/* This testcase ICEd on sparc64 because -mcpu=supersparc and implicit
-   -m64 resulted in MASK_V8 and MASK_V9 to be set at the same time.  */
-/* { dg-do compile } */
-/* { dg-options "" } */
-/* { dg-options "-mcpu=supersparc" { target sparc*-*-* } } */
-
-void bar (long *x, long *y);
-
-void foo (int x, long *y, long *z)
-{
-  int i;
-
-  for (i = x - 1; i >= 0; i--)
-    {
-      bar (z + i * 3 + 1, y);
-      bar (z + i * 3 + 2, y);
-    }
-}