aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr41488.c
blob: 1e4bf19c7da947a134be00864ed244a089d09ec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-ivcanon-scev" } */

struct struct_t
{
  int* data;
};

void foo (struct struct_t* sp, int start, int end)
{
  int i;

  for (i = 0; i+start < end; i++)
    sp->data[i+start] = 0;
}

/* { dg-final { scan-tree-dump-times "Simplify PEELED_CHREC into POLYNOMIAL_CHREC" 1 "ivcanon" } } */