aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/vect-dv-1.c
blob: 0da4cd978a8a0e19240a2d681651f0150e98bfda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Test compiler crash when dependence analyzer can not represent
   dependence relation by distance vector.  */
/* { dg-do compile } */
/* { dg-require-effective-target vect_int } */

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];
      }
}
/* { dg-final { cleanup-tree-dump "vect" } } */