aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa-chrec/ssa-chrec-55.c
blob: 796cceb4b50d933137bcdfcb563f42aa88194063 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */ 
/* { dg-options "-O1 -fscalar-evolutions -fdump-tree-scev-details" } */

int main(int argc)
{
  int I, J;
  const int N = 30;
  const int M = 40;
  for (J = argc; J < N; J += 3)
    {
      for (I = J; I < M; I++)
	{
	  printf ("%d %d\n", I, J);
	}
    }
}