aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr56366.c
blob: 15a430048237a861368fa24c0e6872090089ed4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */

int a, *c, d;
unsigned short b;
short e;

void f(void)
{
  for(;; d++)
    {
      for(a = -9; a < 63; a++)
	for(d = 0; d < 9; d++)
	  b -= --e;

      a = b & *c;
    }
}