aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr84584.c
blob: a6c619494dd3cdba39f10e037920c721004b3f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-do compile } */
/* { dg-options "-O -fgraphite-identity -fno-tree-loop-im" } */

int q3, w1;

void
bw (int b8)
{
  const int sd = 2;
  int mc;

  for (mc = 0; mc < sd; ++mc)
    {
ik:
      for (w1 = 0; w1 < sd; ++w1)
	++b8;
    }

  for (q3 = 0; q3 < sd; ++q3)
    ;

  goto ik;
}