aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/vect-dv-1.c
blob: 516956b8cab64f306254e37f212fa254ecc5c905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* APPLE LOCAL file  AV */
/* Test compiler crash when dependence analyzer can not represent
   dependence relation by distance vector.  */
/* { dg-do compile } */

int x[199];

void foo()
  
{
  int t,j;

  for (j=99;j>0;j--) 
    x [j+j]=x[j];

  for (j=198;j>=100;j--) 
    if(x[j]) 
      {
	x[j-63]=x[j-3]-x[j];
      }
}