blob: c1ca39eaa83832d73ee18736721e1641892e1e08 [file] [log] [blame]
/* { 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;
}