aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr83563.c
blob: c1ca39eaa83832d73ee18736721e1641892e1e08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do compile } */
/* { dg-options "-O -fgraphite -ftree-loop-distribution -fno-tree-dominator-opts -fno-tree-sink -fno-tree-dce" } */

void
sy (void)
{
  int hb;

  for (hb = 1; hb != 0; hb += hb)
    {
    }

  while (hb < 1)
    ++hb;
}