aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/loop-42.c
blob: 3f9d91ac287553c91f11524e7a50eb9c4d6699bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-ivcanon-details" } */

void foo2 (unsigned int num, int *a)
{
  unsigned int i, n = (num - (num % 2));

  for(i = 0; i != n; i += 2)
    a[i] = 0;
}

void foo3 (unsigned int num, int *a)
{
  unsigned int i, n = (num - (num % 3));

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

void foo4 (unsigned int num, int *a)
{
  unsigned int i, n = (num - (num % 4));

  for(i = 0; i != n; i += 4)
    a[i] = 0;
}

void foo5 (unsigned int num, int *a)
{
  unsigned int i, n = (num - (num % 5));

  for(i = 0; i != n; i += 5)
    a[i] = 0;
}

/* { dg-final { scan-tree-dump-not "under assumptions " "ivcanon" } } */