aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr57393-2.c
blob: b9b12ffa5574b7a3afe552b85dbb2a300495320e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* PR middle-end/57393 */
/* { dg-do compile } */

char a;

foo (int **p)
{
  int b;
  for (;;)
    {
      int c[1] = { 0 };
      unsigned *d = &c[0];
      for (b = 7; b; b--)
	**p &= --*d >= a;
    }
}