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