view gcc/testsuite/gcc.dg/vect/vect-dv-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* 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];
      }
}