aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/loop-22.c
blob: fa7da712b6aab8db75c7536dbaef3a5bba531119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-options "-O2 -fdump-tree-optimized" } */

int a[100];

void test (int n)
{
  int i;

  for (i = 0; i < n; i += 3)
    a[i] = i;
}

/* We used to replace the exit test "i < n" by "i != ((n-1)/3) * 3 + 1".  Although
   correct, this transformation is obviously harmful.  */

/* { dg-final { scan-tree-dump-times "/" 0 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */