summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/id-pr44676.c
blob: 65821edba2aa0bf550df7b157dee65fb3247cdd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-options "-O2 -fgraphite-identity -fprofile-generate" } */

int
extend_options (int h, int map, int x, int y, int dx)
{
  while (dx--)
    {
      if (x != dx && y != -x)
	map++;
    }
  return map;
}