summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr80903.c
blob: 73d44b0dc4565649eb9235fca76b858001ad9ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* PR rtl-optimization/80903 */
/* { dg-do compile } */
/* { dg-options "-O3 -funroll-loops" } */

short int a;

void
foo (int x, short int y, short int z)
{
  if (y != 0)
    {
      const short int b = 37;
      y = 0;
      while (y < b)
	{
	  while (y < b)
	    {
	    lab:
	      ++y;
	    }
	  for (y = 0; y < b - 1; ++y)
	    ;
	  if (z != 0)
	    {
	      --a;
	      y *= a;
	    }
	  z = x;
	}
      x = 0;
    }

  goto lab;
}