aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr82473.c
blob: b12de21d7dbce802d84ff3cf4cc3c1ab8809aaf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do compile } */
/* { dg-additional-options "-ftree-vectorize" } */

void
zz (int x9, short int gt)
{
  if (0)
    {
      while (gt < 1)
	{
	  int pz;

k6:
	  for (pz = 0; pz < 3; ++pz)
	    x9 += gt;
	  ++gt;
	}
    }

  if (x9 != 0)
    goto k6;
}