X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.dg%2F20020116-2.c;fp=gcc%2Ftestsuite%2Fgcc.dg%2F20020116-2.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=04f5c6ee571ac754e00290a295456a08a2f85ca3;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.dg/20020116-2.c b/gcc/testsuite/gcc.dg/20020116-2.c deleted file mode 100644 index 04f5c6ee..00000000 --- a/gcc/testsuite/gcc.dg/20020116-2.c +++ /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); - } -}