aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/pr102906.c
blob: 1846f0b6dba3a9bc2dfe998f2e03d78744bb94b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-do compile }
// { dg-options "-Os -fdump-tree-ch-details" }

extern unsigned int foo (int*) __attribute__((pure));

unsigned int
tr2 (int array[], int n)
{
  unsigned int sum = 0;
  int x;
  if (n > 0)
    for (x = 0; x < n; x++)
      sum += foo (&array[x]);
  return sum;
}

// { dg-final { scan-tree-dump-not "Not duplicating.*optimizing for size" "ch2" } }